aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Base/BRenderSDL.cpp
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-09 04:50:38 +0200
committerEinar Johan Trøan Sømåen2012-07-09 04:50:38 +0200
commit0a43bba003c5e5cbf302a667e8515d4066d72407 (patch)
treef47246629e29786bbc4239c286b19153dbb37e5d /engines/wintermute/Base/BRenderSDL.cpp
parent0ef77c57b6f6889471c7c5d902999fcf34c47a89 (diff)
downloadscummvm-rg350-0a43bba003c5e5cbf302a667e8515d4066d72407.tar.gz
scummvm-rg350-0a43bba003c5e5cbf302a667e8515d4066d72407.tar.bz2
scummvm-rg350-0a43bba003c5e5cbf302a667e8515d4066d72407.zip
WINTERMUTE: Rename FuncName->funcName in coll_templ.h
Diffstat (limited to 'engines/wintermute/Base/BRenderSDL.cpp')
-rw-r--r--engines/wintermute/Base/BRenderSDL.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/Base/BRenderSDL.cpp b/engines/wintermute/Base/BRenderSDL.cpp
index 323c6cc7be..51202d26ef 100644
--- a/engines/wintermute/Base/BRenderSDL.cpp
+++ b/engines/wintermute/Base/BRenderSDL.cpp
@@ -639,7 +639,7 @@ void CBRenderSDL::dumpData(const char *filename) {
int TotalKB = 0;
int TotalLoss = 0;
fprintf(f, "Filename;Usage;Size;KBytes\n");
- for (int i = 0; i < Mgr->_surfaces.GetSize(); i++) {
+ for (int i = 0; i < Mgr->_surfaces.getSize(); i++) {
CBSurfaceSDL *Surf = (CBSurfaceSDL *)Mgr->_surfaces[i];
if (!Surf->_filename) continue;
if (!Surf->_valid) continue;
@@ -653,7 +653,7 @@ void CBRenderSDL::dumpData(const char *filename) {
fprintf(f, "%d;", kb);
fprintf(f, "\n");
}
- fprintf(f, "Total %d;;;%d\n", Mgr->_surfaces.GetSize(), TotalKB);
+ fprintf(f, "Total %d;;;%d\n", Mgr->_surfaces.getSize(), TotalKB);
fclose(f);