From b97deabebdfe696a1396f759bf8b0a256d433180 Mon Sep 17 00:00:00 2001 From: "John F. Fay" Date: Sun, 16 Sep 2007 04:16:49 +0000 Subject: [PATCH] Fixing bug #1688954, submitted in Marcy '07. I changed "FREEGLUT" to _T("FREEGLUT") and nothing changed on my Windows XP system. If this will allow it to work on Vista, then in it goes. git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@716 7f0cb862-5218-0410-a997-914c9d46530a --- src/freeglut_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freeglut_window.c b/src/freeglut_window.c index 69afdf8..5ab924f 100644 --- a/src/freeglut_window.c +++ b/src/freeglut_window.c @@ -713,7 +713,7 @@ void fgOpenWindow( SFG_Window* window, const char* title, #else window->Window.Handle = CreateWindowEx( exFlags, - "FREEGLUT", + _T("FREEGLUT"), title, flags, x, y, w, h, -- 1.7.10.4