From a5ca50866f357b99c332f695504d02032dec5179 Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Sat, 19 Apr 2025 21:59:50 +0200 Subject: [PATCH] Lowercase lua extension check --- include/Common.h | 1 + src/Common.cpp | 7 +++++++ src/TPluginMonitor.cpp | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/include/Common.h b/include/Common.h index 217d23c..879209e 100644 --- a/include/Common.h +++ b/include/Common.h @@ -131,6 +131,7 @@ private: }; void SplitString(std::string const& str, const char delim, std::vector& out); +std::string LowerString(std::string str); std::string ThreadName(bool DebugModeOverride = false); void RegisterThread(const std::string& str); diff --git a/src/Common.cpp b/src/Common.cpp index d135569..1785b9e 100644 --- a/src/Common.cpp +++ b/src/Common.cpp @@ -384,6 +384,13 @@ void SplitString(const std::string& str, const char delim, std::vector