From f1bb67188dd6538dcbc482d7b09cca3dcb245fba Mon Sep 17 00:00:00 2001 From: MissLavender-LQ Date: Thu, 28 Sep 2023 03:49:04 +0100 Subject: [PATCH] linux debugging commented out line 27-35 to help with linux debugging --- Nuake/src/Vendors/katana-parser/selector.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Nuake/src/Vendors/katana-parser/selector.c b/Nuake/src/Vendors/katana-parser/selector.c index 957650da..d3e7e480 100644 --- a/Nuake/src/Vendors/katana-parser/selector.c +++ b/Nuake/src/Vendors/katana-parser/selector.c @@ -24,15 +24,15 @@ #include #include #include -strcasecmp(const char* a, const char* b) -{ - #ifdef NK_WIN - return _stricmp(a, b); - #endif - #ifdef NK_LINUX - return strcasecmp(a, b); - #endif -} +// strcasecmp(const char* a, const char* b) +// { +// #ifdef NK_WIN +// return _stricmp(a, b); +// #endif +// #ifdef NK_LINUX +// return strcasecmp(a, b); +// #endif +// } #undef assert #define assert(x)