1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-05-03 18:00:54 +02:00

clean up sdlmame directory

This commit is contained in:
root
2015-06-22 17:16:04 +02:00
parent 1994389575
commit 83d3053e08
14 changed files with 563 additions and 366 deletions
@@ -0,0 +1,19 @@
commit 6ee372b3693857372a7b4855039ad1a94d3aebca
Author: hasufell <hasufell@gentoo.org>
Date: Tue Jun 25 23:51:12 2013 +0200
fix for disabled opengl
diff --git a/src/osd/sdl/osdsdl.h b/src/osd/sdl/osdsdl.h
index ed0b66b..03d68f9 100644
--- a/src/osd/sdl/osdsdl.h
+++ b/src/osd/sdl/osdsdl.h
@@ -219,6 +219,8 @@ public:
const char *audio_driver() const { return value(SDLOPTION_AUDIODRIVER); }
#if USE_OPENGL
const char *gl_lib() const { return value(SDLOPTION_GL_LIB); }
+#else
+ const char *gl_lib() const { return NULL; }
#endif
private: