*** empty log message ***
authorMatthew Mondor <mmondor@pulsar-zone.net>
Sun, 7 Jan 2007 09:26:43 +0000 (09:26 +0000)
committerMatthew Mondor <mmondor@pulsar-zone.net>
Sun, 7 Jan 2007 09:26:43 +0000 (09:26 +0000)
mmsoftware/paradise_adventure/GNUmakefile
mmsoftware/paradise_adventure/src/main.c

index f3f45c9..5cc6c46 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: GNUmakefile,v 1.1 2007/01/07 07:51:12 mmondor Exp $
+# $Id: GNUmakefile,v 1.2 2007/01/07 09:26:43 mmondor Exp $
 
 CC := cc
 RM := rm
@@ -24,7 +24,7 @@ BIN := paradise_adventure
 
 SDL_CFLAGS := $(shell sdl-config --cflags)
 SDL_LDFLAGS := $(shell sdl-config --libs)
-SDL_LDFLAGS += -lSDL_image -lSDL_mixer
+SDL_LDFLAGS += -lSDL_image -lSDL_mixer -lSDL_ttf
 
 # OS dependent settings follow
 OS := $(shell $(UNAME) -s)
index 2f58374..a690c31 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.2 2007/01/07 09:21:30 mmondor Exp $ */
+/* $Id: main.c,v 1.3 2007/01/07 09:26:43 mmondor Exp $ */
 
 /*
  * Copyright (c) 2006, Matthew Mondor
@@ -102,6 +102,7 @@ main(int argc, char **argv)
        while (!main_quit) {
                SDL_Event       ev;
 
+               (void) SDL_WaitEvent(NULL);
                while (SDL_PollEvent(&ev)) {
                        switch (ev.type) {
                        case SDL_QUIT: