From e24da32acf3007966e1076fe3d1c7216e395bf09 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sun, 14 Nov 2021 00:16:09 +0100 Subject: [PATCH] Moved a code block behind an #ifdef. --- src/86box.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/86box.c b/src/86box.c index 00fc3222c..5efedc238 100644 --- a/src/86box.c +++ b/src/86box.c @@ -749,6 +749,7 @@ pc_init_modules(void) wchar_t temp[512]; char tempc[512]; +#ifdef PRINT_MISSING_MACHINES_AND_VIDEO_CARDS c = m = 0; while (machine_get_internal_name_ex(c) != NULL) { m = machine_available(c); @@ -768,6 +769,7 @@ pc_init_modules(void) pclog("Missing video card: %s\n", tempc); c++; } +#endif pc_log("Scanning for ROM images:\n"); c = m = 0;