From b82fac403f929bc4f8acaa46ba4b92fe2094980f Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Thu, 14 Nov 2013 05:11:53 -0500 Subject: src/main.c: Add another shortcut to the demo. This is more realistic; players are lazy pedestrians. --- 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 */ -- cgit v0.9.1