diff options
author | Torbjörn Andersson | 2003-07-07 15:21:37 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2003-07-07 15:21:37 +0000 |
commit | 2e35b6b3304f961f293b10ccf0a5617fe75b17fa (patch) | |
tree | 8884c72ee92dc138fa055afb79f0d8d59f61b210 | |
parent | 5857979d67535295e16d4ca6b18f6e05b2c113e2 (diff) | |
download | scummvm-rg350-2e35b6b3304f961f293b10ccf0a5617fe75b17fa.tar.gz scummvm-rg350-2e35b6b3304f961f293b10ccf0a5617fe75b17fa.tar.bz2 scummvm-rg350-2e35b6b3304f961f293b10ccf0a5617fe75b17fa.zip |
Fixed warning.
svn-id: r8842
-rw-r--r-- | sky/control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sky/control.cpp b/sky/control.cpp index 3824b1e1e9..9affc5c40a 100644 --- a/sky/control.cpp +++ b/sky/control.cpp @@ -142,7 +142,7 @@ SkyControlStatus::SkyControlStatus(SkyText *skyText, OSystem *system, uint8 *scr _system = system; _screenBuf = scrBuf; _textData = NULL; - _statusText = new SkyTextResource(NULL, 2, 1, 64, 163, NULL, DO_NOTHING, _system, _screenBuf); + _statusText = new SkyTextResource(NULL, 2, 1, 64, 163, 0, DO_NOTHING, _system, _screenBuf); } SkyControlStatus::~SkyControlStatus(void) { |