diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mac.m | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -871,9 +871,9 @@ puglFreeWorldInternals(PuglWorld* world) } void* -puglGetNativeWorld(PuglWorld* PUGL_UNUSED(world)) +puglGetNativeWorld(PuglWorld* world) { - return NULL; + return world->impl->app; } PuglInternals* |