diff options
author | Max Horn | 2003-05-29 16:05:56 +0000 |
---|---|---|
committer | Max Horn | 2003-05-29 16:05:56 +0000 |
commit | d0320a6ff0fa888c19c12d2c7c46a2502ab8e556 (patch) | |
tree | b73fd934f86371557170b66981dd5a4033dd7704 /backends/null | |
parent | e62091f008f5849f8e5a4c4a9b8a2cb6599cacd1 (diff) | |
download | scummvm-rg350-d0320a6ff0fa888c19c12d2c7c46a2502ab8e556.tar.gz scummvm-rg350-d0320a6ff0fa888c19c12d2c7c46a2502ab8e556.tar.bz2 scummvm-rg350-d0320a6ff0fa888c19c12d2c7c46a2502ab8e556.zip |
cleanup
svn-id: r8106
Diffstat (limited to 'backends/null')
-rw-r--r-- | backends/null/null.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/null/null.cpp b/backends/null/null.cpp index 0d6a21927a..38c595a4c2 100644 --- a/backends/null/null.cpp +++ b/backends/null/null.cpp @@ -24,6 +24,8 @@ #include "system.h" +#if defined(USE_NULL_DRIVER) + /* NULL video driver */ class OSystem_NULL : public OSystem { public: @@ -90,3 +92,5 @@ OSystem *OSystem_NULL_create() { OSystem *OSystem_NULL_create() { return NULL; } + +#endif |