1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-07-17 21:35:21 +00:00

Fix ScriptInterface developer mode settings not applying.

Minor changes:
- clean out some Lua functions registered twice
- Correct bool cast in quad_setSegs()
- Show nested mains in debug console
- One less //HACK comment
This commit is contained in:
fgenesis 2013-08-03 22:37:10 +02:00
parent 212a680541
commit 41929955d3
4 changed files with 5 additions and 10 deletions

View file

@ -483,7 +483,6 @@ std::string SoundManager::getVolumeString()
musicChannel2->getVolume(&musicChannel2Vol);
os << "curMusVol (c1/c2/g): " << musicChannelVol << " " << musicChannel2Vol << " " << musicGroupVol << std::endl;
os << "runInBG: " << core->settings.runInBackground << std::endl;
return os.str();
}