aboutsummaryrefslogtreecommitdiff
path: root/engines/chewy/sound.h
diff options
context:
space:
mode:
authorFilippos Karapetis2016-09-20 12:10:59 +0300
committerFilippos Karapetis2016-10-03 00:33:29 +0300
commitc6ccd8bbe8da08534a9f1e23258dc4011a60382c (patch)
tree9c8dc00b5be289afc52575c7c6a07f7888875a35 /engines/chewy/sound.h
parent676fa15c193bbd2a7fc2962d0c2bc26e260efd6a (diff)
downloadscummvm-rg350-c6ccd8bbe8da08534a9f1e23258dc4011a60382c.tar.gz
scummvm-rg350-c6ccd8bbe8da08534a9f1e23258dc4011a60382c.tar.bz2
scummvm-rg350-c6ccd8bbe8da08534a9f1e23258dc4011a60382c.zip
CHEWY: Use a specialized resource handler for each resource
Diffstat (limited to 'engines/chewy/sound.h')
-rw-r--r--engines/chewy/sound.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/chewy/sound.h b/engines/chewy/sound.h
index 6537f3eabe..23610272e5 100644
--- a/engines/chewy/sound.h
+++ b/engines/chewy/sound.h
@@ -28,7 +28,7 @@
namespace Chewy {
-class Resource;
+class SoundResource;
class Sound {
public:
@@ -44,8 +44,8 @@ private:
Audio::SoundHandle _musicHandle;
Audio::SoundHandle _speechHandle;
- Resource *_speechRes;
- Resource *_soundRes;
+ SoundResource *_speechRes;
+ SoundResource *_soundRes;
};
} // End of namespace Chewy