Changes between Version 2 and Version 3 of Ticket #12363


Ignore:
Timestamp:
Jul 20, 2021, 5:51:32 AM (3 years ago)
Author:
macca8
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12363 – Description

    v2 v3  
    1313What’s needed is an appropriate name test to be included in /engines/myst3/myst3.cpp/Myst3Engine::saveGameState(desc, thumbnail, isAutosave) to reset the isAutosave variable to true, before it’s passed on to _state->save().
    1414
    15 I’d suggest something similar to the following (it’s only needed if the parameter is false), placing it immediately after the removal of any extension from saveName (line 1594)...
     15I’d suggest something similar to the following (it’s only needed if the parameter is false), placing it immediately after the removal of any extension from saveName (& prior to the assignment of the fileName variable) ...
    1616
     17
     18{{{
    1719if !isAutosave && saveName.equalsIgnoreCase(_(“Autosave”)) {
    1820        isAutosave = true;
    1921}
     22}}}
     23
    2024
    2125