Android: Rename cheats to patches
This commit is contained in:
parent
de3696be4c
commit
5084c90e08
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue