42 lines
870 B
Plaintext
42 lines
870 B
Plaintext
$OpenBSD: patch-gemdropx_c,v 1.2 2002/11/29 04:42:44 pvalchev Exp $
|
|
--- gemdropx.c.orig Tue Dec 28 02:54:17 1999
|
|
+++ gemdropx.c Thu Nov 28 21:36:42 2002
|
|
@@ -26,7 +26,7 @@
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
#include <unistd.h>
|
|
-#include <SDL/SDL.h>
|
|
+#include <SDL.h>
|
|
|
|
#ifndef NOJOYSTICK
|
|
#include <sys/stat.h>
|
|
@@ -36,7 +36,7 @@
|
|
#endif
|
|
|
|
#ifndef NOSOUND
|
|
-#include <mixer.h>
|
|
+#include <SDL_mixer.h>
|
|
#endif
|
|
|
|
#include "data/images/nothing.xbm"
|
|
@@ -281,6 +281,7 @@ void setup(void)
|
|
SDL_GetError());
|
|
exit(1);
|
|
}
|
|
+ atexit(SDL_Quit);
|
|
|
|
|
|
/* Set the size of the window: */
|
|
@@ -2231,9 +2232,11 @@ int main(int argc, char * argv[])
|
|
(JS_VERSION & 0x0000FF));
|
|
#endif
|
|
|
|
+#ifndef NOSOUND
|
|
SDL_VERSION(&sdlver);
|
|
printf("SDL version %d.%d.%d\n\n", sdlver.major,
|
|
sdlver.minor, sdlver.patch);
|
|
+#endif
|
|
|
|
exit(0);
|
|
}
|