diff options
author | Paul Gilbert | 2006-02-19 04:19:09 +0000 |
---|---|---|
committer | Paul Gilbert | 2006-02-19 04:19:09 +0000 |
commit | 8de9189ffed4eadc244bef55a17fee1c2c444a10 (patch) | |
tree | 4633e217c78bce295ed0b2586db4d61fcea3ddcc /engines | |
parent | d0fe9fdd795d54f0fb48dd89f967206d4357bdff (diff) | |
download | scummvm-rg350-8de9189ffed4eadc244bef55a17fee1c2c444a10.tar.gz scummvm-rg350-8de9189ffed4eadc244bef55a17fee1c2c444a10.tar.bz2 scummvm-rg350-8de9189ffed4eadc244bef55a17fee1c2c444a10.zip |
Changed hotspot references to use updated hotspot methods
svn-id: r20765
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lure/debug-methods.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/debug-methods.cpp b/engines/lure/debug-methods.cpp index 2fda7a57dc..85be551bc7 100644 --- a/engines/lure/debug-methods.cpp +++ b/engines/lure/debug-methods.cpp @@ -61,10 +61,10 @@ void showActiveHotspots() { s += strlen(s); sprintf(s, "h pos=(%d,%d,%d) size=(%d,%d) - ", - h.resource().roomNumber, h.x(), h.y(), h.width(), h.height()); + h.roomNumber(), h.x(), h.y(), h.width(), h.height()); s += strlen(s); - uint16 nameId = h.resource().nameId; + uint16 nameId = h.nameId(); if (nameId != 0) { StringData::getReference().getString(nameId, s, NULL, NULL); s += strlen(s); |