From bc7d728eb397c3b525a6c1b20f3704390789cdcd Mon Sep 17 00:00:00 2001 From: Zion Nimchuk Date: Wed, 16 Aug 2017 13:28:46 -0700 Subject: [PATCH] Fix linux builds giving experimental build even if not on experimental build. --- rpcs3/rpcs3qt/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index 8e56bb924b..ca6e0fb42d 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -116,7 +116,7 @@ void main_window::Init() fs::stat_t st; if (!fs::stat(fs::get_config_dir() + "rpcs3.pdb", st) || st.is_directory || st.size < 1024 * 1024 * 100) #else - if (true) + if (false) #endif { QMessageBox msg;