diff --git a/src/ZE_ZEngine.cpp b/src/ZE_ZEngine.cpp
index a3ffca2..ca18587 100644
--- a/src/ZE_ZEngine.cpp
+++ b/src/ZE_ZEngine.cpp
@@ -13,7 +13,7 @@
\brief Central source file for ZEngine.
Actual implementation of ZEngine singleton class, the core of ZEngine.
-
$Id: ZE_ZEngine.cpp,v 1.40 2003/05/13 01:31:30 cozman Exp $
+
$Id: ZE_ZEngine.cpp,v 1.41 2003/06/02 02:16:57 cozman Exp $
\author James Turk
**/
@@ -81,7 +81,7 @@ void ZEngine::ReleaseInstance()
string ZEngine::GetVersion()
{
- return VERSION;
+ return VERSION_STR;
}
void ZEngine::SetupDisplay(int width, int height, int bpp, bool fullscreen)
diff --git a/src/ZE_ZImage.cpp b/src/ZE_ZImage.cpp
index 5cb5a63..f8a7cd9 100644
--- a/src/ZE_ZImage.cpp
+++ b/src/ZE_ZImage.cpp
@@ -13,7 +13,7 @@
\brief Source file for ZImage.
Implementation of ZImage, the Image class for ZEngine.
-
$Id: ZE_ZImage.cpp,v 1.32 2003/05/13 01:31:30 cozman Exp $
+
$Id: ZE_ZImage.cpp,v 1.33 2003/06/02 02:16:57 cozman Exp $
\author James Turk
**/
@@ -145,7 +145,6 @@ void ZImage::Attach(SDL_Surface *surface)
rTexMaxX = coord[2];
rTexMaxY = coord[3];
rImage = surface;
- //rEngine->WriteLog(FormatStr("Attached %d with ID %d",this,rTexID)); //log added for bug 723910 - ZImage Draws Wrong Image
}
else
rEngine->ReportError(ZERR_NOIMAGE,"Attach");
@@ -162,7 +161,6 @@ void ZImage::Release()
{
if(glIsTexture(rTexID))
{
- //rEngine->WriteLog(FormatStr("Releasing %d with ID %d",this,rTexID)); //log added for bug 723910 - ZImage Draws Wrong Image
glDeleteTextures(1,&rTexID);
}
rTexMinX = rTexMinY = rTexMaxX = rTexMaxY = 0.0f;