diff options
author | Max Horn | 2011-06-06 15:48:40 +0200 |
---|---|---|
committer | Max Horn | 2011-06-06 15:48:40 +0200 |
commit | 848079b66de84cec7559bfbd009d664098ea42ac (patch) | |
tree | b13983abb7e351fc218b9f935e94df46c8d69c5c | |
parent | 0e20bc0086f9e65454334c7a8f647d796188c0cf (diff) | |
download | scummvm-rg350-848079b66de84cec7559bfbd009d664098ea42ac.tar.gz scummvm-rg350-848079b66de84cec7559bfbd009d664098ea42ac.tar.bz2 scummvm-rg350-848079b66de84cec7559bfbd009d664098ea42ac.zip |
NULL: Fix null backend (untested)
-rw-r--r-- | backends/platform/null/null.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/null/null.cpp b/backends/platform/null/null.cpp index e46ff9c4db..106cde1699 100644 --- a/backends/platform/null/null.cpp +++ b/backends/platform/null/null.cpp @@ -83,7 +83,7 @@ void OSystem_NULL::initBackend() { // this way; they need to be hooked into the system somehow to // be functional. Of course, can't do that in a NULL backend :). - BaseBackend::initBackend(); + ModularBackend::initBackend(); } bool OSystem_NULL::pollEvent(Common::Event &event) { |