aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe
diff options
context:
space:
mode:
authorFilippos Karapetis2017-03-22 04:29:46 +0200
committerFilippos Karapetis2017-03-22 04:29:46 +0200
commit56ec429537ee86a5e8cda0f027a21f217f1c16a2 (patch)
tree6f671e9e0ef7fb948bff7bf45985c3e3543eda36 /engines/fullpipe
parentf3e81b5f17872186f7c67a551876dd78f268865c (diff)
downloadscummvm-rg350-56ec429537ee86a5e8cda0f027a21f217f1c16a2.tar.gz
scummvm-rg350-56ec429537ee86a5e8cda0f027a21f217f1c16a2.tar.bz2
scummvm-rg350-56ec429537ee86a5e8cda0f027a21f217f1c16a2.zip
FULLPIPE: Change some more _memfilename usage to Common::String
Diffstat (limited to 'engines/fullpipe')
-rw-r--r--engines/fullpipe/gfx.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 6fd720a52d..5a89f1d419 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -470,7 +470,7 @@ Picture::~Picture() {
}
void Picture::freePicture() {
- debugC(5, kDebugMemory, "Picture::freePicture(): file: %s", _memfilename);
+ debugC(5, kDebugMemory, "Picture::freePicture(): file: %s", _memfilename.c_str());
if (_bitmap) {
if (testFlags() && !_field_54) {
@@ -532,7 +532,7 @@ bool Picture::load(MfcArchive &file) {
getData();
- debugC(5, kDebugLoading, "Picture::load: loaded <%s>", _memfilename);
+ debugC(5, kDebugLoading, "Picture::load: loaded <%s>", _memfilename.c_str());
return true;
}
@@ -552,7 +552,7 @@ void Picture::setAOIDs() {
}
void Picture::init() {
- debugC(5, kDebugLoading, "Picture::init(), %s", _memfilename);
+ debugC(5, kDebugLoading, "Picture::init(), %s", _memfilename.c_str());
MemoryObject::getData();
@@ -585,7 +585,7 @@ void Picture::getDibInfo() {
}
if (!_data) {
- warning("Picture::getDibInfo: data is empty <%s>", _memfilename);
+ warning("Picture::getDibInfo: data is empty <%s>", _memfilename.c_str());
MemoryObject::load();
}
@@ -611,7 +611,7 @@ void Picture::draw(int x, int y, int style, int angle) {
int x1 = x;
int y1 = y;
- debugC(7, kDebugDrawing, "Picture::draw(%d, %d, %d, %d) (%s)", x, y, style, angle, _memfilename);
+ debugC(7, kDebugDrawing, "Picture::draw(%d, %d, %d, %d) (%s)", x, y, style, angle, _memfilename.c_str());
if (x != -1)
x1 = x;