aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorEugene Sandulenko2006-04-04 22:21:10 +0000
committerEugene Sandulenko2006-04-04 22:21:10 +0000
commit8fa9bd6728a1d739bd53c297b92f962e465fa88e (patch)
treef68a4ec8d5e14a09f42f26b9f588673a9a1ae443 /engines/gob
parentd292c0ec55024ef95833f56300987a19e2ef4e31 (diff)
downloadscummvm-rg350-8fa9bd6728a1d739bd53c297b92f962e465fa88e.tar.gz
scummvm-rg350-8fa9bd6728a1d739bd53c297b92f962e465fa88e.tar.bz2
scummvm-rg350-8fa9bd6728a1d739bd53c297b92f962e465fa88e.zip
Removed extra exclamation marks in warning() calls as well.
svn-id: r21608
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/draw.cpp2
-rw-r--r--engines/gob/inter_v1.cpp2
-rw-r--r--engines/gob/mult_v2.cpp2
-rw-r--r--engines/gob/util.cpp4
4 files changed, 5 insertions, 5 deletions
diff --git a/engines/gob/draw.cpp b/engines/gob/draw.cpp
index caf4a73ce8..6e1e2a1da3 100644
--- a/engines/gob/draw.cpp
+++ b/engines/gob/draw.cpp
@@ -859,7 +859,7 @@ void Draw::printText(void) {
_renderFlags = savedFlags;
if (_renderFlags & 4) {
- warning("printText: Input not supported!");
+ warning("printText: Input not supported");
// xor ax, ax
// loc_436_1391:
// xor dx, dx
diff --git a/engines/gob/inter_v1.cpp b/engines/gob/inter_v1.cpp
index 88cb5f2307..71e6b5ba63 100644
--- a/engines/gob/inter_v1.cpp
+++ b/engines/gob/inter_v1.cpp
@@ -1078,7 +1078,7 @@ bool Inter_v1::o1_strToLong(char &cmdCount, int16 &counter, int16 &retFlag) {
}
bool Inter_v1::o1_invalidate(char &cmdCount, int16 &counter, int16 &retFlag) {
- warning("invalidate: 'bugged' function!");
+ warning("invalidate: 'bugged' function");
_vm->_draw->_destSurface = load16();
_vm->_draw->_destSpriteX = _vm->_parse->parseValExpr();
_vm->_draw->_destSpriteY = _vm->_parse->parseValExpr();
diff --git a/engines/gob/mult_v2.cpp b/engines/gob/mult_v2.cpp
index 3c105f8528..899acc1592 100644
--- a/engines/gob/mult_v2.cpp
+++ b/engines/gob/mult_v2.cpp
@@ -220,7 +220,7 @@ void Mult_v2::loadMult(int16 resId) {
}
if (i == j) {
warning("GOB2 Stub! Mult_Data.sndSlot");
- warning("GOB2 Stub! Game::interLoadSound() differs!");
+ warning("GOB2 Stub! Game::interLoadSound() differs");
_multData2->sndSlot[_multData2->sndSlotsCount] = _vm->_inter->loadSound(1);
_vm->_inter->loadSound(1);
// _multData2->sndKeys[i].soundIndex = _multData2->sndSlot[_multData2->sndSlotsCount] & 0x7FFF;
diff --git a/engines/gob/util.cpp b/engines/gob/util.cpp
index 7e6996f00f..64426c8fd5 100644
--- a/engines/gob/util.cpp
+++ b/engines/gob/util.cpp
@@ -41,7 +41,7 @@ Util::Util(GobEngine *vm) : _vm(vm) {
void Util::addKeyToBuffer(int16 key) {
if ((_keyBufferHead + 1) % KEYBUFSIZE == _keyBufferTail) {
- warning("key buffer overflow!");
+ warning("key buffer overflow");
return;
}
@@ -395,7 +395,7 @@ void Util::listInsertBack(List * list, void *data) {
if (list->pHead != 0) {
if (list->pTail == 0) {
list->pTail = list->pHead;
- warning("listInsertBack: Broken list!");
+ warning("listInsertBack: Broken list");
}
node = new ListNode;