aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/tony.h
diff options
context:
space:
mode:
authorStrangerke2012-06-16 11:32:50 +0200
committerStrangerke2012-06-16 11:32:50 +0200
commitddd1414a56568d62348e56ccc907b8ba7bb296eb (patch)
tree653c7990370405f5e9c67cc2cc9bd861582b24bd /engines/tony/tony.h
parent638b06660141677421aa7a342a606b0e4e593389 (diff)
downloadscummvm-rg350-ddd1414a56568d62348e56ccc907b8ba7bb296eb.tar.gz
scummvm-rg350-ddd1414a56568d62348e56ccc907b8ba7bb296eb.tar.bz2
scummvm-rg350-ddd1414a56568d62348e56ccc907b8ba7bb296eb.zip
TONY: Rename sound functions and class names
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);