Renpy Game Save Location Portable Guide

if renpy.android: text "Saves are stored inside the app (Android private storage)." elif renpy.ios: text "Saves are stored inside the app (iOS sandbox)." elif renpy.emscripten: text "Saves are stored in your browser's IndexedDB." else: text "Saves folder: [config.savedir]"

: Developers can change where a game saves by modifying config.save_directory in options.rpy . renpy game save location

On Linux (including Steam Deck), Ren’Py follows the XDG Base Directory Specification. By default, it uses: if renpy

C:\Program Files (x86)\Steam\userdata\[YourSteamID]\[AppID]\remote Why are there two save folders? renpy game save location

%APPDATA%/RenPy/ (usually C:\Users\[Username]\AppData\Roaming\RenPy\ )