diff options
author | Filippos Karapetis | 2014-12-03 00:52:11 +0200 |
---|---|---|
committer | Filippos Karapetis | 2014-12-03 00:52:11 +0200 |
commit | 11d41ace02ce84ab40de2ae315a106950579e2bd (patch) | |
tree | 4d4c3abf4a07bb2af74c00e1c560da1fc71337d3 | |
parent | 637102d33b9ab69724c1badd9515e0e26a4b4b88 (diff) | |
download | scummvm-rg350-11d41ace02ce84ab40de2ae315a106950579e2bd.tar.gz scummvm-rg350-11d41ace02ce84ab40de2ae315a106950579e2bd.tar.bz2 scummvm-rg350-11d41ace02ce84ab40de2ae315a106950579e2bd.zip |
ZVISION: Use the ScummVM defined type int32, instead of int32_t
-rw-r--r-- | engines/zvision/text/text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/zvision/text/text.cpp b/engines/zvision/text/text.cpp index 872d6875b7..3cfc5b2f89 100644 --- a/engines/zvision/text/text.cpp +++ b/engines/zvision/text/text.cpp @@ -457,7 +457,7 @@ void TextRenderer::drawTxtInOneLine(const Common::String &text, Graphics::Surfac j++; } dx = 0; - for (int32_t jj = 0; jj < j; jj++) { + for (int32 jj = 0; jj < j; jj++) { if (TxtJustify[i] == TXT_JUSTIFY_LEFT) _engine->getRenderManager()->blitSurfaceToSurface(*TxtSurfaces[i][jj], dst, dx, dy + TxtPoint[i] - TxtSurfaces[i][jj]->h, 0); @@ -474,7 +474,7 @@ void TextRenderer::drawTxtInOneLine(const Common::String &text, Graphics::Surfac } for (i = 0; i < TXT_CFG_TEXTURES_LINES; i++) - for (int32_t j = 0; j < TXT_CFG_TEXTURES_PER_LINE; j++) + for (int32 j = 0; j < TXT_CFG_TEXTURES_PER_LINE; j++) if (TxtSurfaces[i][j] != NULL) { TxtSurfaces[i][j]->free(); delete TxtSurfaces[i][j]; |