diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-11 08:38:38 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-11 08:38:38 -0500 |
commit | 43bbcf02fd5e4e69a9aa521fa4cd572cc8675cf3 (patch) | |
tree | 1f9a4def2c1b236e9762dbb8d0b8fe9143b7a9a1 /main.cpp | |
parent | 2baf10d54f1cbfdb781b9b37987e0815dbdafc3f (diff) |
first areas plotted
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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){ |