mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix window icon on X11
This commit is contained in:
parent
ef2b6c78ff
commit
56d263ef24
1
CHANGES
1
CHANGES
|
@ -21,6 +21,7 @@ Bugfixes:
|
|||
- Python: Make sure GB link object isn't GC'd before GB object
|
||||
- GBA DMA: Fix Display Start DMAs
|
||||
- GBA DMA: Fix DMA start/end timing
|
||||
- Qt: Fix window icon on X11
|
||||
Misc:
|
||||
- GBA Savedata: EEPROM performance fixes
|
||||
- GBA Savedata: Automatically map 1Mbit Flash files as 1Mbit Flash
|
||||
|
|
|
@ -85,6 +85,7 @@ Window::Window(CoreManager* manager, ConfigController* config, int playerId, QWi
|
|||
|
||||
m_logo.setDevicePixelRatio(m_screenWidget->devicePixelRatio());
|
||||
m_logo = m_logo; // Free memory left over in old pixmap
|
||||
setWindowIcon(m_logo);
|
||||
|
||||
#if defined(M_CORE_GBA)
|
||||
float i = 2;
|
||||
|
|
Loading…
Reference in New Issue