diff options
author | Max Horn | 2011-02-07 23:01:06 +0000 |
---|---|---|
committer | Max Horn | 2011-02-07 23:01:06 +0000 |
commit | 2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb (patch) | |
tree | a538852678f172dec297b83d115a7d76f2638969 /engines/lure | |
parent | 377b4c67d99503b19e866ff47c685c57dd2a56e0 (diff) | |
download | scummvm-rg350-2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb.tar.gz scummvm-rg350-2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb.tar.bz2 scummvm-rg350-2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb.zip |
ALL: Fix whitespaces / indention
svn-id: r55818
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/events.cpp | 3 | ||||
-rw-r--r-- | engines/lure/game.cpp | 3 | ||||
-rw-r--r-- | engines/lure/lure.cpp | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/engines/lure/events.cpp b/engines/lure/events.cpp index c637d4d7f7..f56a57ca34 100644 --- a/engines/lure/events.cpp +++ b/engines/lure/events.cpp @@ -141,7 +141,8 @@ void Mouse::waitForRelease() { LureEngine &engine = LureEngine::getReference(); do { - while (e.pollEvent() && !engine.shouldQuit()) ; + while (e.pollEvent() && !engine.shouldQuit()) + ; g_system->delayMillis(20); } while (!engine.shouldQuit() && (lButton() || rButton() || mButton())); } diff --git a/engines/lure/game.cpp b/engines/lure/game.cpp index e77ac25716..7e13cff032 100644 --- a/engines/lure/game.cpp +++ b/engines/lure/game.cpp @@ -228,7 +228,8 @@ void Game::execute() { case Common::KEYCODE_KP_MINUS: if (_debugFlag) { if (roomNum == 1) roomNum = 55; - while (res.getRoom(--roomNum) == NULL) ; + while (res.getRoom(--roomNum) == NULL) + ; room.setRoomNumber(roomNum); } break; diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp index 310480d2e1..ca102e237c 100644 --- a/engines/lure/lure.cpp +++ b/engines/lure/lure.cpp @@ -233,7 +233,8 @@ bool LureEngine::loadGame(uint8 slotNumber) { } // Read in and discard the savegame caption - while (f->readByte() != 0) ; + while (f->readByte() != 0) + ; // Load in the data Resources::getReference().loadFromStream(f); |