aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.cpp b/main.cpp
index fdb7d32..e45ed96 100644
--- a/main.cpp
+++ b/main.cpp
@@ -64,7 +64,7 @@ int main(int argc, char *argv[]){
if( music == NULL ){
printf( "Failed to load beat music! SDL_mixer Error: %s\n", Mix_GetError() );
}
- Mix_PlayMusic( music, -1 );
+ //Mix_PlayMusic( music, -1 );
@@ -188,7 +188,7 @@ void render(){
**************************/
currentWorld->draw(&player->loc); // Draw the world around the player
- glColor3ub(0,0,0);
+ glColor3ub(255,255,255);
player->near=true;
player->draw(); // Draw the player
player->inv->draw();