diff --git a/changelog.txt b/changelog.txt
index db708d4..9bf556a 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,5 +1,11 @@
ZEngine Version Log for Version 0.8.1
-$Id: changelog.txt,v 1.20 2003/01/03 03:48:01 cozman Exp $
+$Id: changelog.txt,v 1.21 2003/01/07 05:44:32 cozman Exp $
+
+0.8.2
+ -Added \since option to documentation (Everything after 0.8.0 will be labeled with a version.)
+ -Added "desired framerate" code to ZEngine.
+ -Added "desired framerate" functionality into the test programs.
+ -Fixed OpenGL color bleed in ZRect.
0.8.1
-Added legal information for developers.
diff --git a/src/ZE_ZRect.cpp b/src/ZE_ZRect.cpp
index 5c42420..f36a93e 100644
--- a/src/ZE_ZRect.cpp
+++ b/src/ZE_ZRect.cpp
@@ -13,7 +13,7 @@
File: ZE_ZRect.cpp
Description: Implementation source file for core ZEngine Rectangle Object.
Author(s): James Turk
-$Id: ZE_ZRect.cpp,v 1.4 2002/12/29 06:52:07 cozman Exp $
+$Id: ZE_ZRect.cpp,v 1.5 2003/01/07 05:44:32 cozman Exp $
\file ZE_ZRect.cpp
\brief Source file for ZRect.
@@ -95,6 +95,7 @@ void ZRect::Draw(Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha)
glVertex2f(rX+rWidth, rY+rHeight);
glVertex2f(rX, rY+rHeight);
glEnd();
+ glColor4ub(255,255,255,255);
}
void ZRect::Move(float x, float y)