cocoa backend postponed
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
This commit is contained in:
parent
fa3488402e
commit
1562c3b89e
3 changed files with 15 additions and 3 deletions
|
|
@ -967,7 +967,6 @@ int MwLibraryInit(void) {
|
|||
#ifdef USE_WAYLAND
|
||||
MwLLWaylandCallInit,
|
||||
#endif
|
||||
/* x11 has higher priority then cocoa until it works */
|
||||
#ifdef USE_X11
|
||||
MwLLX11CallInit,
|
||||
#endif
|
||||
|
|
@ -989,6 +988,10 @@ int MwLibraryInit(void) {
|
|||
if(calls[i]() == 0) return 0;
|
||||
}
|
||||
|
||||
#ifdef __APPLE__
|
||||
void MwNoCocoaErrorMessage();
|
||||
MwNoCocoaErrorMessage();
|
||||
#else
|
||||
printf("[WARNING] No suitable GUI backend found! Enabled:"
|
||||
#ifdef USE_COCOA
|
||||
" Cocoa"
|
||||
|
|
@ -1006,7 +1009,7 @@ int MwLibraryInit(void) {
|
|||
" ClassicMacOS"
|
||||
#endif
|
||||
"\n");
|
||||
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue