summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-11-14 05:11:53 (EST)
committer P. J. McDermott <pjm@nac.net>2013-11-14 05:12:31 (EST)
commitb82fac403f929bc4f8acaa46ba4b92fe2094980f (patch)
treec84622e6b6379725ee8d02757bb957cb93f254a4
parent55d3b15d69bd5a1bd43c5de660e5d90c92f375a0 (diff)
downloadoverworld-rpg-b82fac403f929bc4f8acaa46ba4b92fe2094980f.zip
overworld-rpg-b82fac403f929bc4f8acaa46ba4b92fe2094980f.tar.gz
overworld-rpg-b82fac403f929bc4f8acaa46ba4b92fe2094980f.tar.bz2
src/main.c: Add another shortcut to the demo.
This is more realistic; players are lazy pedestrians.
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 219a88f..2603c76 100644
--- a/src/main.c
+++ b/src/main.c
@@ -136,8 +136,8 @@ main(void)
for (; y > 43 * map->tileheight; y -= 1) DEMO(); /* Up */
for (; x > 5 * map->tilewidth ; x -= 1) DEMO(); /* Left */
for (; y > 32 * map->tileheight; y -= 1) DEMO(); /* Up */
- for (; x < 10 * map->tilewidth ; x += 1) DEMO(); /* Right */
- for (; y > 29 * map->tileheight; y -= 1) DEMO(); /* Up */
+ for (; x < 13 * map->tilewidth ; x += 1) DEMO(); /* Right */
+ for (; y > 31 * map->tileheight; y -= 1) DEMO(); /* Up */
for (; x < 16 * map->tilewidth ; x += 1) DEMO(); /* Right */
for (; y < 34 * map->tileheight; y += 1) DEMO(); /* Down */
for (; x < 24 * map->tilewidth ; x += 1) DEMO(); /* Right */