diff --git a/src/SaveTool/SaveTool.cpp b/src/SaveTool/SaveTool.cpp index de7f41b..3cfb068 100644 --- a/src/SaveTool/SaveTool.cpp +++ b/src/SaveTool/SaveTool.cpp @@ -24,7 +24,9 @@ #include #include +#include #include +#include #include #include @@ -153,6 +155,12 @@ SaveTool::SaveTool(const Arguments& arguments): _thread = std::thread{[this]{ checkForUpdates(); }}; _queue.addToast(Toast::Type::Default, "Checking for updates..."); } + + if(GL::Context::current().isExtensionSupported() && + GL::Context::current().detectedDriver() == GL::Context::DetectedDriver::NVidia) + { + GL::DebugOutput::setEnabled(GL::DebugOutput::Source::Api, GL::DebugOutput::Type::Other, {131185}, false); + } } SaveTool::~SaveTool() {