From 57b2be4c2024a6b3473f963baed16164fda82c24 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 14 Mar 2012 06:37:39 +0000 Subject: [PATCH] As reported by thekirbylover, UISounds stack in reverse order. --- Library.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library.mm b/Library.mm index 8c76a03..676a257 100644 --- a/Library.mm +++ b/Library.mm @@ -1811,7 +1811,7 @@ MSHook(bool, _Z24GetFileNameForThisActionmPcRb, unsigned long a0, char *a1, bool NSString *path([NSString stringWithFormat:@"%@/UISounds/%@", theme, file]); if ([Manager_ fileExistsAtPath:path]) { strcpy(a1, [path UTF8String]); - continue; + break; } } } -- 2.45.2