aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wii/osystem.cpp
diff options
context:
space:
mode:
authorAndre Heider2009-09-18 18:56:16 +0000
committerAndre Heider2009-09-18 18:56:16 +0000
commit3e24220a19005a0c53ed436ded721ee77bc68e7f (patch)
treea258a179f17f162f89f8e9b9778f9227215fbc31 /backends/platform/wii/osystem.cpp
parente1ad748f0d7802ea0e6772c14546117b75c60220 (diff)
downloadscummvm-rg350-3e24220a19005a0c53ed436ded721ee77bc68e7f.tar.gz
scummvm-rg350-3e24220a19005a0c53ed436ded721ee77bc68e7f.tar.bz2
scummvm-rg350-3e24220a19005a0c53ed436ded721ee77bc68e7f.zip
Moved the Wii gfx code to its own library. Added a onscreen console for stdout/err, toggable via pad keys.
svn-id: r44189
Diffstat (limited to 'backends/platform/wii/osystem.cpp')
-rw-r--r--backends/platform/wii/osystem.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/backends/platform/wii/osystem.cpp b/backends/platform/wii/osystem.cpp
index a32752104b..5fabdc1637 100644
--- a/backends/platform/wii/osystem.cpp
+++ b/backends/platform/wii/osystem.cpp
@@ -19,17 +19,17 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
+#include <unistd.h>
+
+#include <ogc/mutex.h>
+#include <ogc/lwp_watchdog.h>
+
#include "common/config-manager.h"
#include "backends/fs/wii/wii-fs-factory.h"
#include "osystem.h"
#include "options.h"
-#include <unistd.h>
-
-#include <ogc/mutex.h>
-#include <ogc/lwp_watchdog.h>
-
OSystem_Wii::OSystem_Wii() :
_startup_time(0),
@@ -69,6 +69,7 @@ OSystem_Wii::OSystem_Wii() :
#endif
_optionsDlgActive(false),
+ _consoleVisible(false),
_fullscreen(false),
_arCorrection(false),