aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-12-11 08:38:38 -0500
committerClyne Sullivan <tullivan99@gmail.com>2015-12-11 08:38:38 -0500
commit43bbcf02fd5e4e69a9aa521fa4cd572cc8675cf3 (patch)
tree1f9a4def2c1b236e9762dbb8d0b8fe9143b7a9a1 /main.cpp
parent2baf10d54f1cbfdb781b9b37987e0815dbdafc3f (diff)
first areas plotted
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 b28a8da..4e45189 100644
--- a/main.cpp
+++ b/main.cpp
@@ -256,6 +256,7 @@ int main(/*int argc, char *argv[]*/){
std::cout << "SDL_mixer could not initialize! Error: " << Mix_GetError() << std::endl;
return -1;
}
+ Mix_AllocateChannels(8);
// Run Mix_Quit when main returns
atexit(Mix_CloseAudio);
@@ -492,8 +493,7 @@ void mainLoop(void){
ui::handleEvents();
if(prev != currentWorld){
- prev->bgmStop();
- currentWorld->bgmPlay();
+ currentWorld->bgmPlay(prev);
}
if(prevPrevTime + MSEC_PER_TICK <= currentTime){