From 6f0526911793422b239a86c063d752a0ea2e81b4 Mon Sep 17 00:00:00 2001 From: fjallon Date: Tue, 13 Dec 2011 17:56:57 +0000 Subject: [PATCH] fix for MacOS pascal string escape character '\p' --- src/XOGLUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XOGLUtils.cpp b/src/XOGLUtils.cpp index fcd6fe10a..2b7d637d6 100644 --- a/src/XOGLUtils.cpp +++ b/src/XOGLUtils.cpp @@ -49,7 +49,7 @@ CFBundleRef gBundleRefOpenGL = NULL; OSStatus aglInitEntryPoints (void) { OSStatus err = noErr; - const Str255 frameworkName = "\\pOpenGL.framework"; + const Str255 frameworkName = "\pOpenGL.framework"; FSRefParam fileRefParam; FSRef fileRef; CFURLRef bundleURLOpenGL;