From e86043f765dd18a51cb2450f45d1d204fd4cb4d9 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 28 Jan 2014 00:46:42 +0000 Subject: Fix call to non-existent function. --- pugl/pugl_osx.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- cgit v1.2.3