diff options
author | Sven Hesse | 2016-07-20 18:39:42 +0200 |
---|---|---|
committer | Sven Hesse | 2016-07-20 18:39:42 +0200 |
commit | 8546ecab04461a920430da0fb9e7a356e7697489 (patch) | |
tree | ac084f816f83931f9dd876685dfb2c1c3cf9c6ae | |
parent | 7bc91d48a184db75bc1fafc2f8135a42767fb46f (diff) | |
download | scummvm-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.
-rw-r--r-- | engines/agos/subroutine.cpp | 2 |
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; |