1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-10-19 21:09:29 +00:00

Fix startup crash and linking error in release mode

This commit is contained in:
fgenesis 2016-07-18 03:21:24 +02:00
commit e8f1129c24
4 changed files with 3 additions and 6 deletions

View file

@ -1397,8 +1397,6 @@ void Core::run(float runTime)
sound->pause();
core->joystick.rumble(0,0,0);
while (!isWindowFocus())
{
pollEvents();
@ -3006,7 +3004,7 @@ void Core::initLocalization()
{
in >> low >> up;
trans[low[0]] = up[0];
trans[(unsigned char)(low[0])] = (unsigned char)up[0];
}
initCharTranslationTables(&trans);
}