aboutsummaryrefslogtreecommitdiff
path: root/gob/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'gob/sound.h')
-rw-r--r--gob/sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gob/sound.h b/gob/sound.h
index db0507ca18..088b40ef73 100644
--- a/gob/sound.h
+++ b/gob/sound.h
@@ -28,7 +28,7 @@ namespace Gob {
class Snd {
public:
- typedef struct SoundDesc {
+ struct SoundDesc {
Audio::SoundHandle handle;
char *data;
int32 size;
@@ -39,7 +39,7 @@ public:
int16 flag;
SoundDesc() : data(0), size(0), repCount(0), timerTicks(0),
inClocks(0), frequency(0), flag(0) {}
- } SoundDesc;
+ };
typedef void (*CleanupFuncPtr) (int16);