aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/graphics.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2016-05-25 05:37:07 +0200
committerTorbjörn Andersson2016-05-25 05:37:07 +0200
commit85e55d0c6ee6c1cdfabf121cc10d359c6c473cd6 (patch)
tree3dc6a8bb44a043fd930a928df172389d78d68086 /engines/agi/graphics.cpp
parentf37bfb4677d185b2ae506596b8eca59f6aea1fda (diff)
downloadscummvm-rg350-85e55d0c6ee6c1cdfabf121cc10d359c6c473cd6.tar.gz
scummvm-rg350-85e55d0c6ee6c1cdfabf121cc10d359c6c473cd6.tar.bz2
scummvm-rg350-85e55d0c6ee6c1cdfabf121cc10d359c6c473cd6.zip
JANITORIAL: Remove unnecessary semicolons
Diffstat (limited to 'engines/agi/graphics.cpp')
-rw-r--r--engines/agi/graphics.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/agi/graphics.cpp b/engines/agi/graphics.cpp
index c7d643d6a0..24cd4f43d3 100644
--- a/engines/agi/graphics.cpp
+++ b/engines/agi/graphics.cpp
@@ -605,7 +605,7 @@ void GfxMgr::render_BlockEGA(int16 x, int16 y, int16 width, int16 height, bool c
switch (_upscaledHires) {
case DISPLAY_UPSCALED_640x400:
- offsetDisplay += _displayScreenWidth;;
+ offsetDisplay += _displayScreenWidth;
break;
default:
break;
@@ -660,7 +660,7 @@ void GfxMgr::render_BlockCGA(int16 x, int16 y, int16 width, int16 height, bool c
switch (_upscaledHires) {
case DISPLAY_UPSCALED_640x400:
- offsetDisplay += _displayScreenWidth;;
+ offsetDisplay += _displayScreenWidth;
break;
default:
break;
@@ -743,7 +743,7 @@ void GfxMgr::render_BlockHercules(int16 x, int16 y, int16 width, int16 height, b
offsetVisual += SCRIPT_WIDTH - width;
offsetDisplay += _displayScreenWidth - displayWidth;
- offsetDisplay += _displayScreenWidth;;
+ offsetDisplay += _displayScreenWidth;
remainingHeight--;
}