diff options
author | Max Horn | 2008-04-29 21:27:16 +0000 |
---|---|---|
committer | Max Horn | 2008-04-29 21:27:16 +0000 |
commit | 01dcd766afc60d0b185c8c0a6f5498f416b12924 (patch) | |
tree | f24c92fa8243696a0d1495a7630b05f0d6c00e50 /engines/made | |
parent | b804175684073a4e8bb8a4dea89c15c861db93ee (diff) | |
download | scummvm-rg350-01dcd766afc60d0b185c8c0a6f5498f416b12924.tar.gz scummvm-rg350-01dcd766afc60d0b185c8c0a6f5498f416b12924.tar.bz2 scummvm-rg350-01dcd766afc60d0b185c8c0a6f5498f416b12924.zip |
Fix warning
svn-id: r31778
Diffstat (limited to 'engines/made')
-rw-r--r-- | engines/made/scriptfuncs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/made/scriptfuncs.cpp b/engines/made/scriptfuncs.cpp index ff6bf4b79c..2c593936fb 100644 --- a/engines/made/scriptfuncs.cpp +++ b/engines/made/scriptfuncs.cpp @@ -443,7 +443,7 @@ int16 ScriptFunctionsRtz::o1_TEXTRECT(int16 argc, int16 *argv) { int16 y1 = CLIP<int16>(argv[3], 1, 198); int16 x2 = CLIP<int16>(argv[2], 1, 318); int16 y2 = CLIP<int16>(argv[1], 1, 198); - int16 textValue = argv[0]; + //int16 textValue = argv[0]; // TODO: textValue _vm->_screen->setTextRect(Common::Rect(x1, y1, x2, y2)); return 0; |