about summary refs log tree commit diff
path: root/src/engine/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/sound.h')
-rw-r--r--src/engine/sound.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/sound.h b/src/engine/sound.h
index d14458e3..8f5dab24 100644
--- a/src/engine/sound.h
+++ b/src/engine/sound.h
@@ -18,12 +18,12 @@ public:
 
 	virtual int LoadWV(const char *pFilename) = 0;
 	
-	virtual void SetChannel(int ChannelId, float Volume, float Panning) = 0;
+	virtual void SetChannel(int ChannelID, float Volume, float Panning) = 0;
 	virtual void SetListenerPos(float x, float y) = 0;
 	
-	virtual int PlayAt(int ChannelId, int SoundId, int Flags, float x, float y) = 0;
-	virtual int Play(int ChannelId, int SoundId, int Flags) = 0;
-	virtual void Stop(int VoiceId) = 0;
+	virtual int PlayAt(int ChannelID, int SoundID, int Flags, float x, float y) = 0;
+	virtual int Play(int ChannelID, int SoundID, int Flags) = 0;
+	virtual void Stop(int VoiceID) = 0;
 	virtual void StopAll() = 0;
 };