diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-03 07:33:53 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-02-03 07:33:53 -0500 |
commit | f00c4bb6b0c4dc1cf2f0c122a4748288ac6ab1a5 (patch) | |
tree | 582d4bf03dbdc2e2eaa031a13e002421bc09ddac /src/config.cpp | |
parent | 783143974e36856e92be3fe1b13cc6a0d0b1faeb (diff) |
Stuff
Diffstat (limited to 'src/config.cpp')
-rw-r--r-- | src/config.cpp | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/config.cpp b/src/config.cpp index 31ce578..df15e05 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -11,10 +11,11 @@ extern float VOLUME_MASTER; extern float VOLUME_MUSIC; XMLDocument xml; +XMLElement *scr; +XMLElement *vol; + void readConfig(){ - XMLElement *scr; - XMLElement *vol; xml.LoadFile("config/settings.xml"); scr = xml.FirstChildElement("screen"); SCREEN_WIDTH = scr->UnsignedAttribute("width"); @@ -29,8 +30,14 @@ void readConfig(){ } void updateConfig(){ - XMLElement *vol = xml.FirstChildElement("volume")->FirstChildElement("master")->ToElement(); - vol->SetAttribute("volume",VOLUME_MASTER); + vol->FirstChildElement("master")->SetAttribute("volume",VOLUME_MASTER); + vol->FirstChildElement("music")->SetAttribute("volume",VOLUME_MUSIC); + Mix_Volume(0,VOLUME_MASTER); + Mix_VolumeMusic(VOLUME_MUSIC); + +} + +void saveConfig(){ xml.SaveFile("config/settings.xml", false); }
\ No newline at end of file |