impr: Better Intel GPU log warning

This commit is contained in:
WerWolv 2024-05-17 09:26:41 +02:00
parent 1426424899
commit a6277533e8
1 changed files with 2 additions and 2 deletions

View File

@ -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;