aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-02-23 07:31:22 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-02-23 07:31:22 -0500
commit0396f428411eb015f796643f9e7e38ca97f8fd42 (patch)
treec8aa0afcd640d5dff42c07b06ab81886e400516b /main.cpp
parentf67648a124655305c3e8947fe312b97ccf74e2fd (diff)
parent28539cb9804a2bda8a7d94ec078b1b60ac3ded06 (diff)
Villages!
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp24
1 files changed, 10 insertions, 14 deletions
diff --git a/main.cpp b/main.cpp
index ecff5c6..97f788c 100644
--- a/main.cpp
+++ b/main.cpp
@@ -124,8 +124,6 @@ GLuint shaderProgram;
GLuint colorIndex;
GLuint mouseTex;
-Mix_Chunk *crickets;
-
/*
* loops is used for texture animation. It is believed to be passed to entity
* draw functions, although it may be externally referenced instead.
@@ -170,27 +168,25 @@ void mainLoop(void);
vec2 offset; /* OFFSET!!!!!!!!!!!!!!!!!!!! */
-float shit = 0;
-Menu* currentMenu;
-Menu pauseMenu;
+Menu *currentMenu;
Menu optionsMenu;
-
+Menu pauseMenu;
extern WEATHER weather;
+extern int fadeIntensity;
extern bool fadeEnable;
extern bool fadeWhite;
extern bool fadeFast;
-extern int fadeIntensity;
-unsigned int HLINE = 3;
-unsigned int SCREEN_WIDTH = 1280;
-unsigned int SCREEN_HEIGHT = 720;
-bool FULLSCREEN = false;
+unsigned int SCREEN_WIDTH;
+unsigned int SCREEN_HEIGHT;
+unsigned int HLINE;
+bool FULLSCREEN;
-float VOLUME_MASTER = 50;
-float VOLUME_MUSIC = 25;
-float VOLUME_SFX = 25;
+float VOLUME_MASTER;
+float VOLUME_MUSIC;
+float VOLUME_SFX;
/*******************************************************************************
* MAIN ************************************************************************