diff options
Diffstat (limited to 'src/sound.h')
-rw-r--r-- | src/sound.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sound.h b/src/sound.h index 4379754f..421bf899 100644 --- a/src/sound.h +++ b/src/sound.h @@ -108,12 +108,12 @@ class Sound { void playSfx(const char *path); private: - bool installed; + bool mInstalled; - int sfxVolume; - int musicVolume; + int mSfxVolume; + int mMusicVolume; - Mix_Music *music; + Mix_Music *mMusic; }; extern Sound sound; |