diff --git a/CHANGES b/CHANGES index 0a9123002..a852636e7 100644 --- a/CHANGES +++ b/CHANGES @@ -15,6 +15,7 @@ Other fixes: - GBA Video: Don't attempt to copy invalid registers when switching renderer - Qt: Fix crash when switching from high-resolution OpenGL renderer to software - Qt: Fix OpenGL renderer lagging behind when fast-forwarding (fixes mgba.io/i/2094) + - Qt: Fix smudged window icon on Windows Misc: - Core: Truncate preloading ROMs that slightly exceed max size (fixes mgba.io/i/2093) - GBA: Default-enable VBA bug compat for Ruby and Emerald ROM hacks diff --git a/res/mgba-1024.png b/res/mgba-1024.png index dad3e8212..5a2ffb3ae 100644 Binary files a/res/mgba-1024.png and b/res/mgba-1024.png differ diff --git a/res/mgba-128.png b/res/mgba-128.png index 416f8161f..a515c42b6 100644 Binary files a/res/mgba-128.png and b/res/mgba-128.png differ diff --git a/res/mgba-256.png b/res/mgba-256.png index 4f8ab6831..5ee8a7e66 100644 Binary files a/res/mgba-256.png and b/res/mgba-256.png differ diff --git a/res/mgba-32.png b/res/mgba-32.png index e0c0aedc5..67f9d9cf1 100644 Binary files a/res/mgba-32.png and b/res/mgba-32.png differ diff --git a/res/mgba-512.png b/res/mgba-512.png index 744f9f895..9ab87e5ad 100644 Binary files a/res/mgba-512.png and b/res/mgba-512.png differ diff --git a/res/mgba-64.png b/res/mgba-64.png index 021cbd8b9..cce3a7016 100644 Binary files a/res/mgba-64.png and b/res/mgba-64.png differ diff --git a/src/platform/qt/main.cpp b/src/platform/qt/main.cpp index 98f57723d..e57c0903a 100644 --- a/src/platform/qt/main.cpp +++ b/src/platform/qt/main.cpp @@ -79,7 +79,7 @@ int main(int argc, char* argv[]) { GBAApp application(argc, argv, &configController); #ifndef Q_OS_MAC - QApplication::setWindowIcon(QIcon(":/res/mgba-1024.png")); + QApplication::setWindowIcon(QIcon(":/res/mgba-256.png")); #endif QTranslator qtTranslator; diff --git a/src/platform/qt/resources.qrc b/src/platform/qt/resources.qrc index bfc5235cc..737ec55f0 100644 --- a/src/platform/qt/resources.qrc +++ b/src/platform/qt/resources.qrc @@ -2,6 +2,7 @@ ../../../res/mgba-1024.png + ../../../res/mgba-256.png ../../../res/keymap.qpic ../../../res/patrons.txt ../../../res/no-cam.png