typo
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
IoIxD 2026-04-26 22:12:00 -07:00
commit 4a0059b2f1
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
#include <Mw/Milsko.h>
void MwLLNoCocoaErrorMessage() {
void MwLLNoCocoaErrorMessage(void) {
NSAlert* alert = [[NSAlert alloc] init];
[alert setMessageText:@"Milsko applications currently requires XQuartz or cocoa-way. PRs are welcome for anyone who wants to finish the Cocoa backend (prefarably in Objective-C)"];
[alert addButtonWithTitle:@"Ok"];

View file

@ -989,8 +989,8 @@ int MwLibraryInit(void) {
}
#ifdef __APPLE__
void MwNoCocoaErrorMessage();
MwNoCocoaErrorMessage();
void MwLLNoCocoaErrorMessage(void);
MwLLNoCocoaErrorMessage();
#else
printf("[WARNING] No suitable GUI backend found! Enabled:"
#ifdef USE_COCOA