aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMatthew Hoops2007-09-24 01:46:42 +0000
committerMatthew Hoops2007-09-24 01:46:42 +0000
commite1213945d6ea6c5def84e2f748f1c05f3ebe2b16 (patch)
tree8785e6673771572ad4aab9ce6f9bbd3e9752ab13 /engines
parente37049cd2f75455e927dcea10ceea1847d87c9bc (diff)
downloadscummvm-rg350-e1213945d6ea6c5def84e2f748f1c05f3ebe2b16.tar.gz
scummvm-rg350-e1213945d6ea6c5def84e2f748f1c05f3ebe2b16.tar.bz2
scummvm-rg350-e1213945d6ea6c5def84e2f748f1c05f3ebe2b16.zip
fix regression in the inventory from r28995
svn-id: r29084
Diffstat (limited to 'engines')
-rw-r--r--engines/agi/preagi_winnie.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/agi/preagi_winnie.cpp b/engines/agi/preagi_winnie.cpp
index c98f1fd6b6..09f87df1fb 100644
--- a/engines/agi/preagi_winnie.cpp
+++ b/engines/agi/preagi_winnie.cpp
@@ -477,6 +477,8 @@ void Winnie::inventory() {
sprintf(szMissing, IDS_WTP_INVENTORY_1, _game.nObjMiss);
_vm->drawStr(IDI_WTP_ROW_OPTION_4, IDI_WTP_COL_MENU, IDA_DEFAULT, szMissing);
+ _vm->_gfx->doUpdate();
+ _vm->_system->updateScreen(); //TODO: Move to game's main loop
_vm->getSelection(kSelAnyKey);
}