diff options
author | Max Horn | 2011-04-28 15:54:14 +0200 |
---|---|---|
committer | Max Horn | 2011-04-28 15:54:22 +0200 |
commit | 05bcfd512f1415000241b3427fed689c0d3f9914 (patch) | |
tree | 7ab580b99312aad4f622a9365cecf98c3da22214 /engines/tsage | |
parent | 7d03da14cb621f60c610a752b676c9c2b32e00b0 (diff) | |
download | scummvm-rg350-05bcfd512f1415000241b3427fed689c0d3f9914.tar.gz scummvm-rg350-05bcfd512f1415000241b3427fed689c0d3f9914.tar.bz2 scummvm-rg350-05bcfd512f1415000241b3427fed689c0d3f9914.zip |
TSAGE: Don't use NULL for an int parameter
Diffstat (limited to 'engines/tsage')
-rw-r--r-- | engines/tsage/ringworld_scenes1.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/tsage/ringworld_scenes1.cpp b/engines/tsage/ringworld_scenes1.cpp index 7886c51557..e34973d2e5 100644 --- a/engines/tsage/ringworld_scenes1.cpp +++ b/engines/tsage/ringworld_scenes1.cpp @@ -3001,7 +3001,7 @@ void Scene6100::Action5::dispatch() { switch (scene->_hitCount++) { case 1: scene->_soundHandler.startSound(233); - scene->showMessage(0, NULL, 0); + scene->showMessage(NULL, 0, NULL); if (!_globals->getFlag(76)) scene->_probe.setAction(&scene->_action2); @@ -3009,7 +3009,7 @@ void Scene6100::Action5::dispatch() { case 2: scene->_soundHandler.startSound(234); - scene->showMessage(0, NULL, 0); + scene->showMessage(NULL, 0, NULL); if (!_globals->getFlag(76)) scene->_probe.setAction(NULL); @@ -3018,7 +3018,7 @@ void Scene6100::Action5::dispatch() { default: scene->_soundHandler.startSound(233); - scene->showMessage(0, NULL, 0); + scene->showMessage(NULL, 0, NULL); if (!_globals->getFlag(76)) scene->_probe.setAction(&scene->_action1); |