diff options
author | Torbjörn Andersson | 2015-01-21 01:29:22 +0100 |
---|---|---|
committer | Torbjörn Andersson | 2015-01-21 01:29:22 +0100 |
commit | dfe04491c1d8ecb45f4952af96c9d73e9e654a32 (patch) | |
tree | c363fbfcd38147486402a309ce986699314e76f5 /engines/mads/nebular | |
parent | 796fb134f1af6b3617b7687d2a89ab51dd1aa63d (diff) | |
download | scummvm-rg350-dfe04491c1d8ecb45f4952af96c9d73e9e654a32.tar.gz scummvm-rg350-dfe04491c1d8ecb45f4952af96c9d73e9e654a32.tar.bz2 scummvm-rg350-dfe04491c1d8ecb45f4952af96c9d73e9e654a32.zip |
JANITORIAL: Remove unnecessary semicolons
Diffstat (limited to 'engines/mads/nebular')
-rw-r--r-- | engines/mads/nebular/game_nebular.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/nebular/game_nebular.cpp b/engines/mads/nebular/game_nebular.cpp index fd669bc5cf..8c0c00428a 100644 --- a/engines/mads/nebular/game_nebular.cpp +++ b/engines/mads/nebular/game_nebular.cpp @@ -810,7 +810,7 @@ void GameNebular::step() { (_player._facing == _player._turnToFacing)) { if (_scene._frameStartTime >= *((uint32 *)&_globals[kWalkerTiming])) { if (!_player._stopWalkerIndex) { - int randomVal = _vm->getRandomNumber(29999);; + int randomVal = _vm->getRandomNumber(29999); if (_globals[kSexOfRex] == REX_MALE) { switch (_player._facing) { case FACING_SOUTHWEST: |