1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
===============================
Saving and loading a game
===============================
This page explains how to save and load a game from the Global Main Menu, or load a game directly from the Launcher.
.. note::
Some games use their own load or save entry points within the game, or use their own menu instead of the GMM.
Saving a game
==============
When you're playing a game and you're ready to save, press :kbd:`Ctrl+F5` (:kbd:`Ctrl+fn+F5` on a Mac) to access the Global Main Menu. Select **Save**.
.. figure:: ../images/Launcher/gmm_save.png
The Global Main Menu (GMM).
There are two views: list view and grid view. Click the list and grid icons at the bottom left of the window to toggle between the two.
In tile view, click on the **New Save** tile. Enter a description for the game, then click **OK**.
.. figure:: ../images/Launcher/save_game_grid.png
Saving a game, grid view.
.. figure:: ../images/Launcher/save_game_grid_desc.png
Save game decription, grid view.
In list view, click on a slot to save the game to that slot. Enter a description for the game, then click **Save**.
.. figure:: ../images/Launcher/save_game_list.png
Saving a game, list view.
Autosave
------------
ScummVM automatically saves your game every 5 minutes. The :ref:`autosave period <autosave>` can be changed in the Misc settings tab, or in the :doc:`configuration file <../advanced_topics/configuration_file>`.
Location of saved game files
===============================
The save directory can be changed with the savepath setting in the :doc:`Paths tab <../settings/paths>`. It can also be changed in the :doc:`configuration file <../advanced_topics/configuration_file>`.
.. _savelocation:
Default saved game paths are shown below.
.. tab-set::
.. tab-item:: Windows
``%APPDATA%\ScummVM\Saved games``
.. tab-item:: macOS
``~/Library/Application Support/ScummVM/Savegames/`` (with versions of ScummVM prior to 2.9 it was in ``~/Documents/ScummVM Savegames/``).
.. tab-item:: Linux/Unix
ScummVM follows the XDG Base Directory Specification, so by default the saved games can be found at ``~/.local/share/scummvm/saves/``, but this location might vary depending on the value of the ``XDG_DATA_HOME`` environment variable.
``.local`` is a hidden directory. To view it use ``ls -a`` on the command line.
If ScummVM was installed using Snap, the saves can be found at ``~/snap/scummvm/current/.local/share/scummvm/saves/``
Loading a game
===============
If you want to load your saved game without having to start the game first, select the **Load** button directly from the Launcher. To load a saved game while you're playing a game, press :kbd:`Ctrl+F5` (:kbd:`Ctrl+fn+F5` on a Mac) to access the Global Main Menu, then select **Load**.
There are two views: list view and tile view. Click the list and tile icons at the bottom left of the window to toggle between the two.
In list view, the pane on the left shows a list of your saved games. Click on a saved game to highlight it. In the pane on the right you can see timestamps, screenshots and playtime for that saved game.
Once you have highlighted the game you want to play, click **Load**.
To delete a saved game, highlight the saved game and click **Delete**.
.. figure:: ../images/Launcher/load_game_list.png
Loading a game, list view.
In grid view, each tile shows a screenshot of the saved state, as well as a description and a save slot number. Click on the tile to load that saved game.
.. figure:: ../images/Launcher/load_game_grid.png
Loading a game, grid view.
|