aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authoriLag2017-01-24 14:01:45 -0800
committeriLag2017-01-24 14:01:45 -0800
commit4dbb320e3d1cf3e9d99a91ef5f76255b62bed406 (patch)
tree88755e6e7e8271a8493ffa9830770c480236c22e /frontend
parent47624ecf3cef8397f63dd8de9b7d6e112ab275c9 (diff)
downloadpcsx_rearmed-4dbb320e3d1cf3e9d99a91ef5f76255b62bed406.tar.gz
pcsx_rearmed-4dbb320e3d1cf3e9d99a91ef5f76255b62bed406.tar.bz2
pcsx_rearmed-4dbb320e3d1cf3e9d99a91ef5f76255b62bed406.zip
Cleanup a bit more.
Diffstat (limited to 'frontend')
-rw-r--r--frontend/libretro.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index 0c0ed3e..10e9694 100644
--- a/frontend/libretro.c
+++ b/frontend/libretro.c
@@ -41,7 +41,6 @@
#define ISHEXDEC ((buf[cursor]>='0') && (buf[cursor]<='9')) || ((buf[cursor]>='a') && (buf[cursor]<='f')) || ((buf[cursor]>='A') && (buf[cursor]<='F'))
-
//hack to prevent retroarch freezing when reseting in the menu but not while running with the hot key
int rebootemu = 0;
@@ -801,7 +800,7 @@ void retro_cheat_set(unsigned index, bool enabled, const char *code)
ret = AddCheat("", buf);
if (ret != 0)
- SysPrintf("Failed to set cheat %#u: %s\n", index, code);
+ SysPrintf("Failed to set cheat %#u\n", index);
else if (index < NumCheats)
Cheats[index].Enabled = enabled;
}