aboutsummaryrefslogtreecommitdiff
path: root/engines/agos
diff options
context:
space:
mode:
authorSven Hesse2016-07-20 18:39:42 +0200
committerSven Hesse2016-07-20 18:39:42 +0200
commit8546ecab04461a920430da0fb9e7a356e7697489 (patch)
treeac084f816f83931f9dd876685dfb2c1c3cf9c6ae /engines/agos
parent7bc91d48a184db75bc1fafc2f8135a42767fb46f (diff)
downloadscummvm-rg350-8546ecab04461a920430da0fb9e7a356e7697489.tar.gz
scummvm-rg350-8546ecab04461a920430da0fb9e7a356e7697489.tar.bz2
scummvm-rg350-8546ecab04461a920430da0fb9e7a356e7697489.zip
AGOS: Fix wrongly indented debugC() statement
GCC 6's -Wmisleading-indentation warns about the debugC() statement being wrongly indented, as if belonging into the else's branch, which it clearly doesn't.
Diffstat (limited to 'engines/agos')
-rw-r--r--engines/agos/subroutine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/subroutine.cpp b/engines/agos/subroutine.cpp
index 0f6c767300..2aedfa26fa 100644
--- a/engines/agos/subroutine.cpp
+++ b/engines/agos/subroutine.cpp
@@ -564,7 +564,7 @@ restart:
else
_codePtr += 8;
- debugC(kDebugOpcode, "; %d", sub->id);
+ debugC(kDebugOpcode, "; %d", sub->id);
result = runScript();
if (result != 0) {
break;