diff options
author | Filippos Karapetis | 2007-06-02 21:02:35 +0000 |
---|---|---|
committer | Filippos Karapetis | 2007-06-02 21:02:35 +0000 |
commit | 476088e8224ff484c55418c94756fec98f20d24f (patch) | |
tree | fbd78e4f2f328401d4e476bc8fb72b6caf57f92e | |
parent | 9b0d6d08986415923ecf0cb56760edc4d45035c1 (diff) | |
download | scummvm-rg350-476088e8224ff484c55418c94756fec98f20d24f.tar.gz scummvm-rg350-476088e8224ff484c55418c94756fec98f20d24f.tar.bz2 scummvm-rg350-476088e8224ff484c55418c94756fec98f20d24f.zip |
Silence an MSVC8 warning
svn-id: r27059
-rw-r--r-- | engines/agi/predictive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/predictive.cpp b/engines/agi/predictive.cpp index f6319630d3..e3f38463ac 100644 --- a/engines/agi/predictive.cpp +++ b/engines/agi/predictive.cpp @@ -112,7 +112,7 @@ void AgiEngine::insertSearchNode(const char *word) { bool AgiEngine::predictiveDialog(void) { int key = 0, active = -1, lastactive = -1; bool rc = false; - int x; + uint8 x; int y; int bx[17], by[17]; String prefix; |