diff options
author | Filippos Karapetis | 2010-06-17 23:53:30 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-06-17 23:53:30 +0000 |
commit | 6946167f34518d16036e37ce19683be1592a9424 (patch) | |
tree | 681a2872b49996529cb6a0b677e56ed0559068fa /engines/sci/graphics | |
parent | c9c9a21a0836edfc824e821702e886a656167692 (diff) | |
download | scummvm-rg350-6946167f34518d16036e37ce19683be1592a9424.tar.gz scummvm-rg350-6946167f34518d16036e37ce19683be1592a9424.tar.bz2 scummvm-rg350-6946167f34518d16036e37ce19683be1592a9424.zip |
Strict mode: error out on unhandled subops, to note if they actually exist and where they're used
svn-id: r49975
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r-- | engines/sci/graphics/paint16.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/paint16.cpp b/engines/sci/graphics/paint16.cpp index a52fd304e2..feda84e993 100644 --- a/engines/sci/graphics/paint16.cpp +++ b/engines/sci/graphics/paint16.cpp @@ -514,7 +514,7 @@ reg_t GfxPaint16::kernelDisplay(const char *text, int argc, reg_t *argv) { bRedraw = 0; break; default: - warning("Unknown kDisplay argument %X", displayArg); + error("Unknown kDisplay argument %X", displayArg); break; } } |