From d3e270965e46960f4e79fa77d335e7737a743f4f Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Mon, 19 Dec 2016 23:11:04 -0500 Subject: [PATCH] Fixup: patches in aux were not being cached (and consequently, not applied) --- source/patcher.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/patcher.c b/source/patcher.c index ed7901d..cee87cd 100644 --- a/source/patcher.c +++ b/source/patcher.c @@ -39,7 +39,8 @@ generate_patch_cache(void) rrmdir(PATH_LOADER_CACHE); f_mkdir(PATH_LOADER_CACHE); - recurse_call(PATH_PATCHES, patch_cache_func); + recurse_call(PATH_PATCHES, patch_cache_func); + recurse_call(PATH_AUX_PATCHES, patch_cache_func); return 0; } -- 2.39.5