summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-01-28 00:46:42 +0000
committerDavid Robillard <d@drobilla.net>2014-01-28 00:46:42 +0000
commite86043f765dd18a51cb2450f45d1d204fd4cb4d9 (patch)
tree42e46edd3aa7fc05139207a7aa7997986feaffa6
parent729e2d868af533dac4b2a4a000c40188edc8ea64 (diff)
Fix call to non-existent function.
-rw-r--r--pugl/pugl_osx.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m
index 2480898..6f31730 100644
--- a/pugl/pugl_osx.m
+++ b/pugl/pugl_osx.m
@@ -170,7 +170,7 @@ puglDisplay(PuglView* view)
- (void) drawRect:(NSRect)rect
{
- display(puglview);
+ puglDisplay(puglview);
glFlush();
glSwapAPPLE();
}