1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-06-08 09:31:58 +00:00

fix copy-paste oopsie

This commit is contained in:
fgenesis 2016-11-28 23:19:25 +01:00
parent 717132a723
commit 11488f85d0
2 changed files with 1 additions and 3 deletions

View file

@ -910,8 +910,6 @@ This build is not yet final, and as such there are a couple things lacking. They
initGraphicsLibrary(user.video.resx, user.video.resy, fullscreen, user.video.vsync, user.video.bits);
debugLog("OK");
setInputGrab(0);
debugLog("Init Sound Library...");
initSoundLibrary(user.audio.deviceName);
debugLog("Set Voice Fader");

View file

@ -397,7 +397,7 @@ void UserSettings::load(bool doApply, const std::string &overrideFile)
XMLElement *xml_grabInp = xml_system->FirstChildElement("GrabInput");
if (xml_grabInp)
{
system.allowDangerousScriptFunctions = xml_grabInp->IntAttribute("on");
system.grabInput = xml_grabInp->IntAttribute("on");
}
}