summaryrefslogtreecommitdiffstats
path: root/src/init.c
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-02-18 17:57:14 (EST)
committer P. J. McDermott <pjm@nac.net>2013-02-18 17:57:14 (EST)
commite289e1dd67d2e1b7769bb0fdd23d064a6c596b2b (patch)
treea211c8f1343fdb831cff96e4de74b3948847a08b /src/init.c
parentc250247b7be8b6a0942f7aaeaab95ad6fef933be (diff)
downloadoverworld-rpg-e289e1dd67d2e1b7769bb0fdd23d064a6c596b2b.zip
overworld-rpg-e289e1dd67d2e1b7769bb0fdd23d064a6c596b2b.tar.gz
overworld-rpg-e289e1dd67d2e1b7769bb0fdd23d064a6c596b2b.tar.bz2
Begin work on areas and viewports.
Diffstat (limited to 'src/init.c')
-rw-r--r--src/init.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/init.c b/src/init.c
index f893d1d..921ce6e 100644
--- a/src/init.c
+++ b/src/init.c
@@ -15,12 +15,6 @@ init(void)
if (IMG_Init(IMG_INIT_PNG) != IMG_INIT_PNG) {
err(1, "Failed to initialize SDL_Image (%s)", IMG_GetError());
}
-
- debug("Setting video mode...");
- screen = SDL_SetVideoMode(240, 160, 8, SDL_SWSURFACE | SDL_ANYFORMAT);
- if (screen == NULL) {
- err(1, "Failed to set video mode (%s)", SDL_GetError());
- }
}
void