[Scummvm-cvs-logs] scummvm master -> 400ad3df0512df26f922b8587b92513cb0c2f976

Strangerke Strangerke at scummvm.org
Mon Nov 28 18:56:59 CET 2011


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
5954b8bfeb CGE: Remove useless debugging traces
400ad3df05 TSAGE: R2R - Cleanup: Add missing blanks in class definition (thanks LordHoto for point that out)


Commit: 5954b8bfeb679e67efbd51ab5ead62a946de737d
    https://github.com/scummvm/scummvm/commit/5954b8bfeb679e67efbd51ab5ead62a946de737d
Author: Strangerke (strangerke at scummvm.org)
Date: 2011-11-28T09:55:13-08:00

Commit Message:
CGE: Remove useless debugging traces

Changed paths:
    engines/cge/vga13h.cpp



diff --git a/engines/cge/vga13h.cpp b/engines/cge/vga13h.cpp
index fb81925..186de24 100644
--- a/engines/cge/vga13h.cpp
+++ b/engines/cge/vga13h.cpp
@@ -825,12 +825,10 @@ void Vga::update() {
 	if (_vm->_showBoundariesFl) {
 		Vga::_page[0]->hLine(0, 200 - kPanHeight, 320, 0xee);
 		if (_vm->_barriers[_vm->_now]._horz != 255) {
-			warning("hBar %d", _vm->_barriers[_vm->_now]._horz);
 			for (int i = 0; i < 8; i++)
 				Vga::_page[0]->vLine((_vm->_barriers[_vm->_now]._horz * 8) + i, 0, 200, 0xff);
 		}
 		if (_vm->_barriers[_vm->_now]._vert != 255) {
-			warning("vBar %d", _vm->_barriers[_vm->_now]._vert);
 			for (int i = 0; i < 4; i++)
 				Vga::_page[0]->hLine(0, 80 + (_vm->_barriers[_vm->_now]._vert * 4) + i, 320, 0xff);
 		}


Commit: 400ad3df0512df26f922b8587b92513cb0c2f976
    https://github.com/scummvm/scummvm/commit/400ad3df0512df26f922b8587b92513cb0c2f976
Author: Strangerke (strangerke at scummvm.org)
Date: 2011-11-28T09:56:20-08:00

Commit Message:
TSAGE: R2R - Cleanup: Add missing blanks in class definition (thanks LordHoto for point that out)

Changed paths:
    engines/tsage/ringworld2/ringworld2_speakers.h



diff --git a/engines/tsage/ringworld2/ringworld2_speakers.h b/engines/tsage/ringworld2/ringworld2_speakers.h
index 0d297c4..5793f43 100644
--- a/engines/tsage/ringworld2/ringworld2_speakers.h
+++ b/engines/tsage/ringworld2/ringworld2_speakers.h
@@ -37,7 +37,7 @@ namespace Ringworld2 {
 
 using namespace TsAGE;
 
-class VisualSpeaker: public Speaker {
+class VisualSpeaker : public Speaker {
 public:
 	SceneActor _object1;
 	SceneObject *_object2;
@@ -61,7 +61,7 @@ public:
 	virtual void proc16();
 };
 
-class SpeakerMiranda300: public VisualSpeaker {
+class SpeakerMiranda300 : public VisualSpeaker {
 public:
 	SpeakerMiranda300();
 
@@ -69,7 +69,7 @@ public:
 	virtual void proc15();
 };
 
-class SpeakerSeeker300: public VisualSpeaker {
+class SpeakerSeeker300 : public VisualSpeaker {
 public:
 	SpeakerSeeker300();
 
@@ -77,21 +77,21 @@ public:
 	virtual void proc15();
 };
 
-class SpeakerSeekerL: public VisualSpeaker {
+class SpeakerSeekerL : public VisualSpeaker {
 public:
 	SpeakerSeekerL();
 
 	virtual Common::String getClassName() { return "SpeakerSeekerL"; }
 };
 
-class SpeakerQuinnL: public VisualSpeaker {
+class SpeakerQuinnL : public VisualSpeaker {
 public:
 	SpeakerQuinnL();
 
 	virtual Common::String getClassName() { return "SpeakerQuinnL"; }
 };
 
-class SpeakerQuinn300: public VisualSpeaker {
+class SpeakerQuinn300 : public VisualSpeaker {
 public:
 	SpeakerQuinn300();
 
@@ -99,7 +99,7 @@ public:
 	virtual void proc15();
 };
 
-class SpeakerTeal300: public VisualSpeaker {
+class SpeakerTeal300 : public VisualSpeaker {
 public:
 	SpeakerTeal300();
 
@@ -107,7 +107,7 @@ public:
 	virtual void proc15();
 };
 
-class SpeakerSoldier300: public VisualSpeaker {
+class SpeakerSoldier300 : public VisualSpeaker {
 public:
 	SpeakerSoldier300();
 
@@ -115,14 +115,14 @@ public:
 	virtual void proc15();
 };
 
-class SpeakerQuinn2350: public VisualSpeaker {
+class SpeakerQuinn2350 : public VisualSpeaker {
 public:
 	SpeakerQuinn2350();
 
 	virtual Common::String getClassName() { return "SpeakerQuinn2350"; }
 };
 
-class SpeakerPharisha2350: public VisualSpeaker {
+class SpeakerPharisha2350 : public VisualSpeaker {
 public:
 	SpeakerPharisha2350();
 






More information about the Scummvm-git-logs mailing list