diff options
| author | oy <Tom_Adams@web.de> | 2010-11-17 18:36:19 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-11-17 18:36:19 +0100 |
| commit | 3d3572f845c1d61acd960caf0c28562b9c8681e5 (patch) | |
| tree | 35462aeb48e77f217a79fdaaee36b80777e81d55 /src/engine/client/text.cpp | |
| parent | d32b93d3ec538c89539d39c61cac4b56e00db8be (diff) | |
| download | zcatch-3d3572f845c1d61acd960caf0c28562b9c8681e5.tar.gz zcatch-3d3572f845c1d61acd960caf0c28562b9c8681e5.zip | |
fixed some compiler warnings
Diffstat (limited to 'src/engine/client/text.cpp')
| -rw-r--r-- | src/engine/client/text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/client/text.cpp b/src/engine/client/text.cpp index ddc9429f..e4707a69 100644 --- a/src/engine/client/text.cpp +++ b/src/engine/client/text.cpp @@ -540,8 +540,8 @@ public: int ActualSize; int i; int GotNewLine = 0; - float DrawX, DrawY; - int LineCount; + float DrawX = 0.0f, DrawY = 0.0f; + int LineCount = 0; float CursorX, CursorY; const char *pEnd; |