diff options
Diffstat (limited to 'src/osd/mac/windowcontroller.mm')
-rw-r--r-- | src/osd/mac/windowcontroller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/mac/windowcontroller.mm b/src/osd/mac/windowcontroller.mm index dd49d559b0b..3a4b046d662 100644 --- a/src/osd/mac/windowcontroller.mm +++ b/src/osd/mac/windowcontroller.mm @@ -109,7 +109,7 @@ void *GetOSWindow(void *wincontroller) return [wc getWindow]; } -void *CreateMAMEWindow(char *title, int x, int y, int w, int h, bool isFullscreen) +void *CreateMAMEWindow(const char *title, int x, int y, int w, int h, bool isFullscreen) { NSRect bounds = NSMakeRect(x, y, w, h); NSUInteger style = NSTitledWindowMask | NSClosableWindowMask | NSResizableWindowMask; |