diff options
Diffstat (limited to 'bin/gfcocoa.m')
-rw-r--r-- | bin/gfcocoa.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gfcocoa.m b/bin/gfcocoa.m index 13b218a7..1839bcd0 100644 --- a/bin/gfcocoa.m +++ b/bin/gfcocoa.m @@ -23,7 +23,7 @@ #define UNUSED __attribute__((unused)) extern int init(int argc, char *argv[]); -extern const char *title(void); +extern const char *status(void); extern void draw(uint32_t *buf, size_t xres, size_t yres); extern void input(char in); @@ -42,7 +42,7 @@ extern void input(char in); } - (void) setWindowTitle { - [[self window] setTitle: [NSString stringWithUTF8String: title()]]; + [[self window] setTitle: [NSString stringWithUTF8String: status()]]; } - (void) draw { |