Qt: Fix smudged window icon on Windows, recompress icons
1
CHANGES
|
@ -15,6 +15,7 @@ Other fixes:
|
||||||
- GBA Video: Don't attempt to copy invalid registers when switching renderer
|
- 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 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 OpenGL renderer lagging behind when fast-forwarding (fixes mgba.io/i/2094)
|
||||||
|
- Qt: Fix smudged window icon on Windows
|
||||||
Misc:
|
Misc:
|
||||||
- Core: Truncate preloading ROMs that slightly exceed max size (fixes mgba.io/i/2093)
|
- 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
|
- GBA: Default-enable VBA bug compat for Ruby and Emerald ROM hacks
|
||||||
|
|
Before Width: | Height: | Size: 465 KiB After Width: | Height: | Size: 460 KiB |
BIN
res/mgba-128.png
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
BIN
res/mgba-256.png
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 43 KiB |
BIN
res/mgba-32.png
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
BIN
res/mgba-512.png
Before Width: | Height: | Size: 130 KiB After Width: | Height: | Size: 126 KiB |
BIN
res/mgba-64.png
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.7 KiB |
|
@ -79,7 +79,7 @@ int main(int argc, char* argv[]) {
|
||||||
GBAApp application(argc, argv, &configController);
|
GBAApp application(argc, argv, &configController);
|
||||||
|
|
||||||
#ifndef Q_OS_MAC
|
#ifndef Q_OS_MAC
|
||||||
QApplication::setWindowIcon(QIcon(":/res/mgba-1024.png"));
|
QApplication::setWindowIcon(QIcon(":/res/mgba-256.png"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
QTranslator qtTranslator;
|
QTranslator qtTranslator;
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
<RCC version="1.0">
|
<RCC version="1.0">
|
||||||
<qresource>
|
<qresource>
|
||||||
<file>../../../res/mgba-1024.png</file>
|
<file>../../../res/mgba-1024.png</file>
|
||||||
|
<file>../../../res/mgba-256.png</file>
|
||||||
<file>../../../res/keymap.qpic</file>
|
<file>../../../res/keymap.qpic</file>
|
||||||
<file>../../../res/patrons.txt</file>
|
<file>../../../res/patrons.txt</file>
|
||||||
<file>../../../res/no-cam.png</file>
|
<file>../../../res/no-cam.png</file>
|
||||||
|
|