aboutsummaryrefslogtreecommitdiff
path: root/engines/lastexpress/game/savepoint.cpp
diff options
context:
space:
mode:
authorLittleboy2011-06-28 22:54:51 -0400
committerLittleboy2011-06-28 22:54:51 -0400
commitb4ac4988cca41c2a59e4de99b8fe5392372e21dd (patch)
treede16e2b26463632836cc35d20e87f7c3f0bc7e57 /engines/lastexpress/game/savepoint.cpp
parent90dc4f9a8c3f77b15c7c6d49651338dbc40c40fa (diff)
downloadscummvm-rg350-b4ac4988cca41c2a59e4de99b8fe5392372e21dd.tar.gz
scummvm-rg350-b4ac4988cca41c2a59e4de99b8fe5392372e21dd.tar.bz2
scummvm-rg350-b4ac4988cca41c2a59e4de99b8fe5392372e21dd.zip
LASTEXPRESS: Cleanup comments
Diffstat (limited to 'engines/lastexpress/game/savepoint.cpp')
-rw-r--r--engines/lastexpress/game/savepoint.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lastexpress/game/savepoint.cpp b/engines/lastexpress/game/savepoint.cpp
index 7ec7c241e9..64ae26c2be 100644
--- a/engines/lastexpress/game/savepoint.cpp
+++ b/engines/lastexpress/game/savepoint.cpp
@@ -128,17 +128,17 @@ void SavePoints::addData(EntityIndex entity, ActionIndex action, uint32 param) {
//////////////////////////////////////////////////////////////////////////
void SavePoints::setCallback(EntityIndex index, Entity::Callback *callback) {
if (index >= 40)
- error("SavePoints::setCallback - attempting to use an invalid entity index. Valid values 0-39, was %d", index);
+ error("[SavePoints::setCallback] Attempting to use an invalid entity index. Valid values 0-39, was %d", index);
if (!callback || !callback->isValid())
- error("SavePoints::setCallback - attempting to set an invalid callback for entity %s", ENTITY_NAME(index));
+ error("[SavePoints::setCallback] Attempting to set an invalid callback for entity %s", ENTITY_NAME(index));
_callbacks[index] = callback;
}
Entity::Callback *SavePoints::getCallback(EntityIndex index) const {
if (index >= 40)
- error("SavePoints::getCallback - attempting to use an invalid entity index. Valid values 0-39, was %d", index);
+ error("[SavePoints::getCallback] Attempting to use an invalid entity index. Valid values 0-39, was %d", index);
return _callbacks[index];
}