From 4f94fe5bfeb89fe834edc02b9c9f5d5c2ec04059 Mon Sep 17 00:00:00 2001 From: James Turk Date: Thu, 5 Dec 2002 00:06:32 +0000 Subject: [PATCH] *** empty log message *** --- src/ZE_ZEngine.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ZE_ZEngine.cpp b/src/ZE_ZEngine.cpp index e22b88b..9ab0e6a 100644 --- a/src/ZE_ZEngine.cpp +++ b/src/ZE_ZEngine.cpp @@ -13,7 +13,7 @@ File: ZE_ZEngine.cpp
Description: Implementation source file for ZEngine library main singleton class.
Author(s): James Turk
-$Id: ZE_ZEngine.cpp,v 1.4 2002/12/03 06:19:43 cozman Exp $
+$Id: ZE_ZEngine.cpp,v 1.5 2002/12/05 00:06:32 cozman Exp $
\file ZE_ZEngine.cpp \brief Central source file for ZEngine. @@ -103,7 +103,6 @@ void ZEngine::CreateDisplay(string title, string icon) if(SDL_Init(SDL_INIT_VIDEO|SDL_INIT_TIMER|SDL_INIT_AUDIO) < 0) { LogError(FormatStr("SDL could not be Initialized: %s", SDL_GetError())); - //CloseWindow(); } #ifdef USE_SDL_MIXER @@ -311,7 +310,7 @@ bool ZEngine::KeyIsPressed(SDLKey key) bool ZEngine::KeyPress(SDLKey key) { bool temp = mKeyPress[key]; - mKeyPress[key] = false; +// mKeyPress[key] = false; return temp; }