aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorEugene Sandulenko2017-08-11 20:20:25 +0200
committerEugene Sandulenko2017-08-11 20:20:25 +0200
commite0b3001218f73c978d30642e4a9dcfac415dd79f (patch)
tree216f768a6da1e99dd2826a6bace3b01c8e3985e2 /engines/scumm
parent41d8441ea8f38d39af8e53e29c5195568d6d6574 (diff)
downloadscummvm-rg350-e0b3001218f73c978d30642e4a9dcfac415dd79f.tar.gz
scummvm-rg350-e0b3001218f73c978d30642e4a9dcfac415dd79f.tar.bz2
scummvm-rg350-e0b3001218f73c978d30642e4a9dcfac415dd79f.zip
SCUMM: Add missing return statement
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/script_v5.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/scumm/script_v5.cpp b/engines/scumm/script_v5.cpp
index 4a53ca3fed..cc92631b54 100644
--- a/engines/scumm/script_v5.cpp
+++ b/engines/scumm/script_v5.cpp
@@ -1760,6 +1760,7 @@ void ScummEngine_v5::o5_roomOps() {
return;
case 18: // clear kMainVirtScreen layer 2 buffer
_textSurface.fillRect(Common::Rect(0, _virtscr[kMainVirtScreen].topline * _textSurfaceMultiplier, _textSurface.pitch, (_virtscr[kMainVirtScreen].topline + _virtscr[kMainVirtScreen].h) * _textSurfaceMultiplier), 0);
+ return;
case 19: // enable palette operations (palManipulate(), cyclePalette() etc.)
_townsPaletteFlags |= 1;
return;