From a6277533e850d8c449b7dbe360d225e09e4c6007 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 17 May 2024 09:26:41 +0200 Subject: [PATCH] impr: Better Intel GPU log warning --- plugins/builtin/source/content/settings_entries.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/builtin/source/content/settings_entries.cpp b/plugins/builtin/source/content/settings_entries.cpp index 1b560ed88..f36e6ecd4 100644 --- a/plugins/builtin/source/content/settings_entries.cpp +++ b/plugins/builtin/source/content/settings_entries.cpp @@ -605,7 +605,7 @@ namespace hex::plugin::builtin { class FontFilePicker : public ContentRegistry::Settings::Widgets::FilePicker { public: - bool draw(const std::string &name) { + bool draw(const std::string &name) override { bool changed = false; const auto &fonts = hex::getFonts(); @@ -663,7 +663,7 @@ namespace hex::plugin::builtin { result = !isIntelGPU; if (isIntelGPU) - log::warn("Intel GPU detected! Intel's OpenGL driver has bugs that can cause issues when using ImHex. If you experience any rendering bugs, please try the Mesa3D Software Renderer"); + log::warn("Intel GPU detected! Intel's OpenGL driver has bugs that can cause issues when using ImHex. If you experience any rendering bugs, please enable the Native OS Decoration setting or try the software rendererd -NoGPU release."); } return result;