summary refs log tree commit diff
path: root/bin/gfcocoa.m
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-02-07 11:43:44 -0500
committerJune McEnroe <june@causal.agency>2018-02-07 11:43:44 -0500
commit5450745e718f6e0767e6db7e5b4c73dbe8cc93c6 (patch)
treed0f7d6599febd900d6c82ac209b8508a98edd007 /bin/gfcocoa.m
parentRequire 4 bit counts on gfxx command line (diff)
downloadsrc-5450745e718f6e0767e6db7e5b4c73dbe8cc93c6.tar.gz
src-5450745e718f6e0767e6db7e5b4c73dbe8cc93c6.zip
Rename title to status in gfcocoa
Also separate the options and fileName buffers in gfxx.
Diffstat (limited to 'bin/gfcocoa.m')
-rw-r--r--bin/gfcocoa.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gfcocoa.m b/bin/gfcocoa.m
index 2dcf807b..23136d0a 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 {