aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/tony.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/tony.h')
-rw-r--r--engines/tony/tony.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/tony/tony.h b/engines/tony/tony.h
index 8df2da697c..93232b950d 100644
--- a/engines/tony/tony.h
+++ b/engines/tony/tony.h
@@ -99,8 +99,8 @@ public:
uint32 _hEndOfFrame;
Common::File _vdbFP;
Common::Array<VoiceHeader> _voices;
- FPSOUND _theSound;
- Common::List<FPSFX *> _activeSfx;
+ FPSound _theSound;
+ Common::List<FPSfx *> _activeSfx;
Globals _globals;
Debugger *_debugger;
@@ -115,9 +115,9 @@ public:
DD_BASE2
};
- FPSTREAM *_stream[6];
- FPSFX *_sfx[MAX_SFX_CHANNELS];
- FPSFX *_utilSfx[MAX_SFX_CHANNELS];
+ FPStream *_stream[6];
+ FPSfx *_sfx[MAX_SFX_CHANNELS];
+ FPSfx *_utilSfx[MAX_SFX_CHANNELS];
// RMFont *_fonts[2];
bool _bPaused;
bool _bDrawLocation;
@@ -189,7 +189,7 @@ public:
void playUtilSFX(int nSfx, int nFX = 0);
void stopUtilSFX(int nSfx);
- FPSFX *createSFX(Common::SeekableReadStream *stream);
+ FPSfx *createSFX(Common::SeekableReadStream *stream);
void preloadSFX(int nSfx, const char *fn);
void unloadAllSFX(void);