From efe5a1428b58fcb6935cd97584040c777a313660 Mon Sep 17 00:00:00 2001 From: false_genesis Date: Mon, 7 Apr 2008 15:28:00 +0000 Subject: [PATCH] * fixed: really use fullscreen if windowed=0 --- src/Client/PseuWoW.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Client/PseuWoW.cpp b/src/Client/PseuWoW.cpp index ec6a763..d28dd1f 100644 --- a/src/Client/PseuWoW.cpp +++ b/src/Client/PseuWoW.cpp @@ -190,6 +190,7 @@ bool PseuInstance::InitGUI(void) _gui->SetResolution(x,y,depth); _gui->SetVSync(vsync); _gui->UseShadows(shadows); + _gui->SetWindowed(win); _guithread = new ZThread::Thread(rgui); return true; }