We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 521f349 commit 0c246daCopy full SHA for 0c246da
source/runtime_gui.cpp
@@ -839,13 +839,13 @@ void reshade::runtime::draw_gui()
839
}
840
841
std::string error_message;
842
-#if RESHADE_FX
843
- if (!_last_reload_successfull)
844
- error_message += "compiling some effects";
845
-#endif
846
#if RESHADE_ADDON
847
if (!addon_all_loaded)
848
- error_message += (error_message.empty() ? std::string() : " and ") + "loading some add-ons";
+ error_message += "loading some add-ons";
+#endif
+#if RESHADE_FX
+ if (!_last_reload_successfull)
+ error_message += (error_message.empty() ? std::string() : " and ") + "compiling some effects";
849
#endif
850
if (!error_message.empty())
851
{
0 commit comments