From d47da18958b5214def5127e201f60668c566d9bb Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sun, 25 Aug 2013 17:07:35 -0400 Subject: Moved to an autoconf-based build system --- mazeoflife.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mazeoflife.cpp') diff --git a/mazeoflife.cpp b/mazeoflife.cpp index 9033526..107a640 100644 --- a/mazeoflife.cpp +++ b/mazeoflife.cpp @@ -33,7 +33,7 @@ int main(int argc, char *argv[]) SDL_WM_SetCaption("Maze Of Life", NULL); SDL_Surface* icon; - icon = SDL_LoadBMP("icon.bmp"); + icon = SDL_LoadBMP("resources/icon.bmp"); SDL_WM_SetIcon(icon, NULL); /* @@ -118,7 +118,7 @@ Uint32 tick(Uint32 interval, void *param) TTF_Font* loadFont(int size) { - TTF_Font* tmpfont = TTF_OpenFont("mono.ttf", size); + TTF_Font* tmpfont = TTF_OpenFont("resources/mono.ttf", size); if (tmpfont == NULL) { -- cgit 1.4.1