Savestates: Add quicksave/quickload. Add Android UI for savestates. All single slot for now.

This commit is contained in:
Henrik Rydgard 2013-01-02 21:00:10 +01:00
parent 28684a3ba2
commit 883f61e3dd
25 changed files with 267 additions and 91 deletions

View file

@ -59,7 +59,7 @@ void CConfig::Load(const char *iniFileName)
graphics->Get("DisplayFramebuffer", &bDisplayFramebuffer, false);
graphics->Get("WindowZoom", &iWindowZoom, 1);
graphics->Get("BufferedRendering", &bBufferedRendering, true);
graphics->Get("HardwareTransform", &bHardwareTransform, false);
graphics->Get("HardwareTransform", &bHardwareTransform, true);
graphics->Get("LinearFiltering", &bLinearFiltering, false);
IniFile::Section *sound = iniFile.GetOrCreateSection("Sound");
@ -69,7 +69,6 @@ void CConfig::Load(const char *iniFileName)
control->Get("ShowStick", &bShowAnalogStick, false);
control->Get("ShowTouchControls", &bShowTouchControls, true);
// Ephemeral settings
bDrawWireframe = false;
}