mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
Fix for bug #1751483 - "AGI: The -x command-line option appears to be broken"
svn-id: r29346
This commit is contained in:
parent
5add473048
commit
39da7deefb
@ -247,6 +247,19 @@ void AgiEngine::processEvents() {
|
||||
}
|
||||
}
|
||||
|
||||
void AgiEngine::checkQuickLoad() {
|
||||
if (ConfMan.hasKey("save_slot")) {
|
||||
char saveNameBuffer[256];
|
||||
|
||||
snprintf (saveNameBuffer, 256, "%s.%03d", _targetName.c_str(), ConfMan.getInt("save_slot"));
|
||||
|
||||
if (loadGame(saveNameBuffer, false) == errOK) { // Do not check game id
|
||||
_game.exitAllLogics = 1;
|
||||
_menu->enableAll();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int AgiEngine::agiIsKeypressLow() {
|
||||
processEvents();
|
||||
return _keyQueueStart != _keyQueueEnd;
|
||||
@ -437,15 +450,6 @@ int AgiEngine::agiInit() {
|
||||
if (ec == errOK)
|
||||
ec = _loader->loadResource(rLOGIC, 0);
|
||||
|
||||
|
||||
if (ConfMan.hasKey("save_slot")) {
|
||||
char saveNameBuffer[256];
|
||||
|
||||
snprintf (saveNameBuffer, 256, "%s.%03d", _targetName.c_str(), ConfMan.getInt("save_slot"));
|
||||
|
||||
loadGame(saveNameBuffer, false); // Do not check game id
|
||||
}
|
||||
|
||||
#ifdef __DS__
|
||||
// Normally, the engine loads the predictive text dictionary when the predictive dialog
|
||||
// is shown. On the DS version, the word completion feature needs the dictionary too.
|
||||
|
@ -811,6 +811,7 @@ public:
|
||||
|
||||
void allowSynthetic(bool);
|
||||
void processEvents();
|
||||
void checkQuickLoad();
|
||||
|
||||
// Objects
|
||||
int showObjects();
|
||||
|
@ -260,6 +260,11 @@ void Menu::submit() {
|
||||
--iter;
|
||||
}
|
||||
}
|
||||
|
||||
// We need to wait till the main menu is submitted by the game scripts
|
||||
// before checking if we can start loading a save game from the command line.
|
||||
// Menu initialization and submital takes place when the game starts only
|
||||
_vm->checkQuickLoad();
|
||||
}
|
||||
|
||||
bool Menu::keyhandler(int key) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user