From: chaoskagami Date: Tue, 20 Dec 2016 04:11:04 +0000 (-0500) Subject: Fixup: patches in aux were not being cached (and consequently, not applied) X-Git-Tag: v0.3.1~54^2 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=d3e270965e46960f4e79fa77d335e7737a743f4f;p=corbenik%2Fcorbenik.git Fixup: patches in aux were not being cached (and consequently, not applied) --- 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; }