From a9a9777190086bd2ce2aa54e20a1101509614463 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 29 Mar 2016 08:48:52 -0400 Subject: began reworking indoors --- main.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index f4a0005..4140ac7 100644 --- a/main.cpp +++ b/main.cpp @@ -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 -- cgit v1.2.3