aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/party.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/xeen/party.cpp')
-rw-r--r--engines/xeen/party.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/xeen/party.cpp b/engines/xeen/party.cpp
index 5ed2ea89cb..e392c2e060 100644
--- a/engines/xeen/party.cpp
+++ b/engines/xeen/party.cpp
@@ -571,7 +571,8 @@ void Party::giveTreasure() {
Screen &screen = *_vm->_screen;
Scripts &scripts = *_vm->_scripts;
Sound &sound = *_vm->_sound;
- Window &w = screen._windows[10];
+ Windows &windows = *_vm->_windows;
+ Window &w = windows[10];
if (!_treasure._gold && !_treasure._gems)
return;
@@ -705,7 +706,8 @@ void Party::giveTreasureToCharacter(Character &c, ItemCategory category, int ite
EventsManager &events = *_vm->_events;
Screen &screen = *_vm->_screen;
Sound &sound = *_vm->_sound;
- Window &w = screen._windows[10];
+ Windows &windows = *_vm->_windows;
+ Window &w = windows[10];
XeenItem &treasureItem = _treasure._categories[category][itemIndex];
sound.playFX(20);