From ce8a5c36a646cf7805ac8086bafa6f7d3904bfb9 Mon Sep 17 00:00:00 2001 From: chaoskagami Date: Sun, 12 Jun 2016 19:54:34 -0400 Subject: [PATCH] Reenable interpreter debugging in loader --- source/interp.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/source/interp.c b/source/interp.c index 9beb46e..9c63949 100644 --- a/source/interp.c +++ b/source/interp.c @@ -650,8 +650,7 @@ execb(char *filename, int build_cache) // We should generate a cache for loader in a file intended for titleid. uint8_t *title_buf = (uint8_t *)patch + sizeof(struct system_patch); - fprintf(stderr, "patch: %s\n", patch->name); - fprintf(stderr, "version: %u\n", patch->version); + fprintf(stderr, " Version: %u\n", patch->version); for (uint32_t i = 0; i < patch->titles; i++) { char cache_path[] = PATH_LOADER_CACHE "/0000000000000000"; @@ -697,11 +696,9 @@ execb(char *filename, int build_cache) #endif int debug = 0; -#ifndef LOADER if (config.options[OPTION_OVERLY_VERBOSE]) { debug = 1; } -#endif return exec_bytecode(patch_mem, ver, patch_len, debug); } -- 2.39.5