From: Jay Freeman (saurik) Date: Wed, 14 Mar 2012 06:37:39 +0000 (+0000) Subject: As reported by thekirbylover, UISounds stack in reverse order. X-Git-Tag: v0.9.3904~11 X-Git-Url: https://git.saurik.com/winterboard.git/commitdiff_plain/57b2be4c2024a6b3473f963baed16164fda82c24 As reported by thekirbylover, UISounds stack in reverse order. --- 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; } } }