aboutsummaryrefslogtreecommitdiff
path: root/system.h
diff options
context:
space:
mode:
authorLudvig Strigeus2002-04-13 21:06:48 +0000
committerLudvig Strigeus2002-04-13 21:06:48 +0000
commit82d4f89d5353184e35ff843cfb0b0b9bca619dac (patch)
treec99f9d385af595412f9395b9b8cb68c58899f6ff /system.h
parentff6523f93fe3138d594024d1128f45ba0b44f5b3 (diff)
downloadscummvm-rg350-82d4f89d5353184e35ff843cfb0b0b9bca619dac.tar.gz
scummvm-rg350-82d4f89d5353184e35ff843cfb0b0b9bca619dac.tar.bz2
scummvm-rg350-82d4f89d5353184e35ff843cfb0b0b9bca619dac.zip
added null graphics driver (USE_NULL_DRIVER)
will make it nicer later. svn-id: r3931
Diffstat (limited to 'system.h')
-rw-r--r--system.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/system.h b/system.h
index b2afb8eb19..69f4a9ee49 100644
--- a/system.h
+++ b/system.h
@@ -102,6 +102,7 @@ public:
/* OSystem_SDL */
OSystem *OSystem_SDL_create(int gfx_driver, bool full_screen);
+OSystem *OSystem_NULL_create();
enum {
GFX_NORMAL = 0,
@@ -119,6 +120,7 @@ enum {
GD_SDL = 1,
GD_WIN32 = 2,
GD_X = 3,
+ GD_NULL = 4,
};