diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-03-30 08:47:31 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-03-30 08:47:31 -0400 |
commit | 0b1bfa28f33410acc1c3b95df1c1b748ce55b447 (patch) | |
tree | 807e942cfb92cb631b02ec0079da63838dd6741f /main.cpp | |
parent | c35571e37bdd6d2fe9b95e4265c150265585f3a9 (diff) | |
parent | a9a9777190086bd2ce2aa54e20a1101509614463 (diff) |
Inv and textures
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -243,8 +243,10 @@ int main(int argc, char *argv[]){ std::cout << "SDL_mixer could not initialize! Error: " << Mix_GetError() << std::endl; return -1; } + Mix_AllocateChannels(8); - updateConfig(); + + config::update(); // Run Mix_Quit when main returns atexit(Mix_Quit); @@ -253,7 +255,7 @@ int main(int argc, char *argv[]){ * Load saved settings into the game (see config/settings.xml) */ - readConfig(); + config::read(); /* * Create a window for SDL to draw to. Most parameters are the default, except for the |