diff --git a/src/ZE_ZEngine.cpp b/src/ZE_ZEngine.cpp index 3b5d227..4876018 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.25 2003/01/27 04:33:34 cozman Exp $
+$Id: ZE_ZEngine.cpp,v 1.26 2003/01/30 04:02:01 cozman Exp $
\file ZE_ZEngine.cpp \brief Central source file for ZEngine. @@ -274,10 +274,10 @@ void ZEngine::CloseDisplay() void ZEngine::ToggleFullscreen() { - char *title,*icon; #ifdef linux //SDL_WM_TF only works on Linux - SDL_WM_ToggleFullscreen(mScreen); + SDL_WM_ToggleFullScreen(mScreen); #else + char *title,*icon; SetupDisplay(mWidth,mHeight,mBPP,!mFullscreen); SDL_WM_GetCaption(&title,&icon); if(icon) diff --git a/src/ZE_ZImage.cpp b/src/ZE_ZImage.cpp index 88a480e..961bb82 100644 --- a/src/ZE_ZImage.cpp +++ b/src/ZE_ZImage.cpp @@ -13,7 +13,7 @@ File: ZE_ZImage.cpp
Description: Implementation source file for core ZEngine Image or Texture Object.
Author(s): James Turk, Gamer Tazar
-$Id: ZE_ZImage.cpp,v 1.21 2003/01/25 19:56:05 cozman Exp $
+$Id: ZE_ZImage.cpp,v 1.22 2003/01/30 04:02:01 cozman Exp $
\file ZE_ZImage.cpp \brief Source file for ZImage. @@ -33,7 +33,8 @@ ZImage::ZImage() Release(); } -ZImage::ZImage(const ZImage &rhs) +ZImage::ZImage(const ZImage &rhs) : + ZObject() { rImage = NULL; rAlpha = rhs.Alpha();