docs: Bug fix: GOHOME -> GOPATH

This commit is contained in:
Hajime Hoshi 2015-01-13 11:25:23 +09:00
parent 0328b049d0
commit 5a354684c5
2 changed files with 11 additions and 3 deletions

View File

@ -61,7 +61,7 @@ pre {
:; go get github.com/gopherjs/webgl</code></pre> :; go get github.com/gopherjs/webgl</code></pre>
<h2>Execute the example</h2> <h2>Execute the example</h2>
<pre><code>:; cd $GOHOME/src/github.com/hajimehoshi/ebiten/example <pre><code>:; cd $GOPATH/src/github.com/hajimehoshi/ebiten/example
:; go run rotate/main.go</code></pre> :; go run rotate/main.go</code></pre>
<h2>Run your game on a desktop</h2> <h2>Run your game on a desktop</h2>

View File

@ -56,7 +56,7 @@ pre {
<h2>Features</h2> <h2>Features</h2>
<ul> <ul>
<li>2D Graphics</li> <li>2D Graphics</li>
<li>Input (Mouse, Keyboard)</li> <li>Input (Mouse, Keyboard, Gamepad)</li>
</ul> </ul>
<h2>Example</h2> <h2>Example</h2>
@ -87,7 +87,7 @@ pre {
:; go get github.com/gopherjs/webgl</code></pre> :; go get github.com/gopherjs/webgl</code></pre>
<h2>Execute the example</h2> <h2>Execute the example</h2>
<pre><code>:; cd $GOHOME/src/github.com/hajimehoshi/ebiten/example <pre><code>:; cd $GOPATH/src/github.com/hajimehoshi/ebiten/example
:; go run rotate/main.go</code></pre> :; go run rotate/main.go</code></pre>
<h2>Run your game on a desktop</h2> <h2>Run your game on a desktop</h2>
@ -102,6 +102,14 @@ pre {
<p>NOTE: <code>file://</code> URL may not work with Ebiten. Execute your game on a HTTP server.</p> <p>NOTE: <code>file://</code> URL may not work with Ebiten. Execute your game on a HTTP server.</p>
<h2>Change Log</h2> <h2>Change Log</h2>
<h3>2015-??-??</h3>
<ul>
<li>v1.2.0-rc1 released.
<ul>
<li>Support for gamepads</li>
</ul>
</li>
</ul>
<h3>2015-01-10</h3> <h3>2015-01-10</h3>
<ul> <ul>
<li>v1.1.0-rc1 released. <li>v1.1.0-rc1 released.