summaryrefslogtreecommitdiffstats
path: root/src/sound/oalsound/alsound.h
diff options
context:
space:
mode:
authorerihel <erihel@gmail.com>2012-12-25 21:36:50 +0100
committererihel <erihel@gmail.com>2012-12-25 21:36:50 +0100
commitc793d2d4c67a5556e39300988f42a630fc51e68d (patch)
tree899f076499966b06969399d758700991060ed7ce /src/sound/oalsound/alsound.h
parent1fa5f7a96fb4a1700847ebcf0b07a557da630b10 (diff)
downloadcolobot-c793d2d4c67a5556e39300988f42a630fc51e68d.tar.gz
colobot-c793d2d4c67a5556e39300988f42a630fc51e68d.tar.bz2
colobot-c793d2d4c67a5556e39300988f42a630fc51e68d.zip
* Changed Ret to Get methods in sound module
* Added video settings to profile * Resolution change is now posibble but restart is required
Diffstat (limited to 'src/sound/oalsound/alsound.h')
-rw-r--r--src/sound/oalsound/alsound.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sound/oalsound/alsound.h b/src/sound/oalsound/alsound.h
index a1128e0..7d24ba6 100644
--- a/src/sound/oalsound/alsound.h
+++ b/src/sound/oalsound/alsound.h
@@ -45,13 +45,13 @@ class ALSound : public CSoundInterface
bool RetEnable();
void SetSound3D(bool bMode);
- bool RetSound3D();
- bool RetSound3DCap();
+ bool GetSound3D();
+ bool GetSound3DCap();
void SetAudioVolume(int volume);
- int RetAudioVolume();
+ int GetAudioVolume();
void SetMusicVolume(int volume);
- int RetMusicVolume();
+ int GetMusicVolume();
void SetListener(Math::Vector eye, Math::Vector lookat);
void FrameMove(float rTime);
@@ -80,7 +80,7 @@ class ALSound : public CSoundInterface
private:
void CleanUp();
- int RetPriority(Sound);
+ int GetPriority(Sound);
bool SearchFreeBuffer(Sound sound, int &channel, bool &bAlreadyLoaded);
bool mEnabled;