diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-04 09:24:25 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-04 09:24:25 -0500 |
commit | 814dab606cfeeabd4aeecba852507c3c3f1a005f (patch) | |
tree | e2d2f0bffb0bfcf08c69dbc770a1474b8265528a /include | |
parent | 5f18e763031091a34dc7e279424c2359f63e3d9c (diff) |
Volume Mixer
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 1 | ||||
-rw-r--r-- | include/ui.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index ea3b593..0a8ba20 100644 --- a/include/common.h +++ b/include/common.h @@ -126,6 +126,7 @@ extern unsigned int HLINE; extern float VOLUME_MASTER; extern float VOLUME_MUSIC; +extern float VOLUME_SFX; /** * A 'wrapper' for libc's srand(), as we hope to eventually have our own random number * generator. diff --git a/include/ui.h b/include/ui.h index 8582460..38a4932 100644 --- a/include/ui.h +++ b/include/ui.h @@ -12,7 +12,7 @@ #include <world.h> #include <ft2build.h> #include <SDL2/SDL_opengl.h> -#include <fstream> +#include <thread> #include FT_FREETYPE_H #define DEBUG |