diff options
| author | JosJuice <josjuice@gmail.com> | 2017-12-28 10:13:53 +0100 |
|---|---|---|
| committer | mahdihijazi <mahdi.hijaz@hotmail.com> | 2017-12-28 23:15:48 +0100 |
| commit | 82a6701f795a883d80c3b0167b4d3f3e224a5cd8 (patch) | |
| tree | aa1a58476598667185b5c77541d70719a9b3028b /Source/Android/app/src/main/java | |
| parent | f9a05119370dbc3a261cda61d97b17c261db7b0b (diff) | |
Optionally delete savestate that gets loaded at boot
Diffstat (limited to 'Source/Android/app/src/main/java')
| -rw-r--r-- | Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java index 0d55f9bb12..e82de7fa01 100644 --- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java +++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java @@ -343,7 +343,7 @@ public final class NativeLibrary /** * Begins emulation from the specified savestate. */ - public static native void Run(String path, String savestatePath); + public static native void Run(String path, String savestatePath, boolean deleteSavestate); // Surface Handling public static native void SurfaceChanged(Surface surf); |
