Android: Rename cheats to patches

This commit is contained in:
Connor McLaughlin 2020-10-24 11:38:15 +10:00
parent de3696be4c
commit 5084c90e08
2 changed files with 5 additions and 5 deletions

View File

@ -341,9 +341,9 @@ public class EmulationActivity extends AppCompatActivity implements SurfaceHolde
return; return;
} }
case 1: // Cheats case 1: // Patches
{ {
showCheatsMenu(); showPatchesMenu();
return; return;
} }
@ -382,10 +382,10 @@ public class EmulationActivity extends AppCompatActivity implements SurfaceHolde
builder.create().show(); builder.create().show();
} }
private void showCheatsMenu() { private void showPatchesMenu() {
final CheatCode[] cheats = AndroidHostInterface.getInstance().getCheatList(); final CheatCode[] cheats = AndroidHostInterface.getInstance().getCheatList();
if (cheats == null) { if (cheats == null) {
AndroidHostInterface.getInstance().addOSDMessage("No cheats are loaded.", 5.0f); AndroidHostInterface.getInstance().addOSDMessage("No patches are loaded.", 5.0f);
return; return;
} }

View File

@ -137,7 +137,7 @@
</string-array> </string-array>
<string-array name="emulation_more_menu"> <string-array name="emulation_more_menu">
<item>Reset</item> <item>Reset</item>
<item>Cheats</item> <item>Patches</item>
<item>Change Disc</item> <item>Change Disc</item>
<item>Change Touchscreen Controller</item> <item>Change Touchscreen Controller</item>
<item>Settings</item> <item>Settings</item>