diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2023-01-24 02:26:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 02:26:21 -0700 |
commit | 085e067fc1c34c08db369dbf9136faca50ed048c (patch) | |
tree | ce724cf42c0e9ca01911f08a5de031a2a77ddc0e | |
parent | c45fa016c0f0e5c8a03f029488de29bde8dadcc4 (diff) | |
download | PrismLauncher-085e067fc1c34c08db369dbf9136faca50ed048c.tar.gz PrismLauncher-085e067fc1c34c08db369dbf9136faca50ed048c.tar.bz2 PrismLauncher-085e067fc1c34c08db369dbf9136faca50ed048c.zip |
remove NDEBUG check per Scrumplex's orders
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
-rw-r--r-- | launcher/Application.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index 537ffb68..608fc618 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -1548,9 +1548,7 @@ QString Application::getJarPath(QString jarFile) #endif FS::PathCombine(m_rootPath, "jars"), FS::PathCombine(applicationDirPath(), "jars"), -#if !defined(NDEBUG) FS::PathCombine(applicationDirPath(), "..", "jars") // from inside build dir , for debuging -#endif }; for(QString p : potentialPaths) { |