SDL: Handle icon setup in SdlWindow.
This commit is contained in:
parent
627d766325
commit
3f22c12c56
15 changed files with 201 additions and 130 deletions
|
@ -47,6 +47,9 @@ OSystem_MacOSX::OSystem_MacOSX()
|
|||
}
|
||||
|
||||
void OSystem_MacOSX::init() {
|
||||
// Use an iconless window on OS X, as we use a nicer external icon there.
|
||||
_window = new SdlIconlessWindow();
|
||||
|
||||
#if defined(USE_TASKBAR)
|
||||
// Initialize taskbar manager
|
||||
_taskbarManager = new MacOSXTaskbarManager();
|
||||
|
@ -101,8 +104,6 @@ void OSystem_MacOSX::addSysArchivesToSearchSet(Common::SearchSet &s, int priorit
|
|||
}
|
||||
}
|
||||
|
||||
void OSystem_MacOSX::setupIcon() {
|
||||
// Don't set icon on OS X, as we use a nicer external icon there.
|
||||
}
|
||||
|
||||
bool OSystem_MacOSX::hasFeature(Feature f) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue