aboutsummaryrefslogtreecommitdiff
path: root/gob/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'gob/sound.h')
-rw-r--r--gob/sound.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/gob/sound.h b/gob/sound.h
index 60750874f4..690a92bca3 100644
--- a/gob/sound.h
+++ b/gob/sound.h
@@ -43,10 +43,9 @@ public:
typedef void (*CleanupFuncPtr) (int16);
- SoundDesc *loopingSounds[5]; // Should be enough
- int16 soundPort;
- char playingSound;
- CleanupFuncPtr cleanupFunc;
+ SoundDesc *_loopingSounds[5]; // Should be enough
+ char _playingSound;
+ CleanupFuncPtr _cleanupFunc;
Snd(GobEngine *vm);
void speakerOn(int16 frequency, int32 length);
@@ -84,8 +83,8 @@ protected:
int getRate() const { return _rate; }
};
- SquareWaveStream speakerStream;
- Audio::SoundHandle speakerHandle;
+ SquareWaveStream _speakerStream;
+ Audio::SoundHandle _speakerHandle;
GobEngine *_vm;