aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/debugger.cpp
diff options
context:
space:
mode:
authorstrangerke2011-04-13 21:27:46 +0200
committerstrangerke2011-04-13 21:27:46 +0200
commit66b43f2312578f35e0718d0699de207a7bf77f1a (patch)
tree335cfee6fdf606686f178619c3ef5c1eb99fd573 /engines/tsage/debugger.cpp
parenta132bbb10c2f7349862c6c35d03d829ff76d5dea (diff)
downloadscummvm-rg350-66b43f2312578f35e0718d0699de207a7bf77f1a.tar.gz
scummvm-rg350-66b43f2312578f35e0718d0699de207a7bf77f1a.tar.bz2
scummvm-rg350-66b43f2312578f35e0718d0699de207a7bf77f1a.zip
TSAGE: "Cosmetic" cleanups
Diffstat (limited to 'engines/tsage/debugger.cpp')
-rw-r--r--engines/tsage/debugger.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/tsage/debugger.cpp b/engines/tsage/debugger.cpp
index cc5c9d899c..d04fd71461 100644
--- a/engines/tsage/debugger.cpp
+++ b/engines/tsage/debugger.cpp
@@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
- * $URL: https://scummvm-misc.svn.sourceforge.net/svnroot/scummvm-misc/trunk/engines/tsage/debugger.cpp $
- * $Id: debugger.cpp 223 2011-02-09 13:03:31Z dreammaster $
+ * $URL$
+ * $Id$
*
*/
@@ -32,7 +32,7 @@
namespace tSage {
-Debugger::Debugger(): GUI::Debugger() {
+Debugger::Debugger() : GUI::Debugger() {
DCmd_Register("continue", WRAP_METHOD(Debugger, Cmd_Exit));
DCmd_Register("scene", WRAP_METHOD(Debugger, Cmd_Scene));
DCmd_Register("walk_regions", WRAP_METHOD(Debugger, Cmd_WalkRegions));
@@ -67,7 +67,7 @@ bool Debugger::Cmd_Scene(int argc, const char **argv) {
if (argc == 3)
_globals->_sceneManager._sceneNumber = strToInt(argv[2]);
- _globals->_sceneManager.changeScene(strToInt(argv[1]));
+ _globals->_sceneManager.changeScene(strToInt(argv[1]));
return false;
}
}
@@ -82,7 +82,7 @@ bool Debugger::Cmd_WalkRegions(int argc, const char **argv) {
}
// Colour index to use for the first walk region
- int colour = 16;
+ int colour = 16;
// Lock the background surface for access
Graphics::Surface destSurface = _globals->_sceneManager._scene->_backSurface.lockSurface();
@@ -120,7 +120,7 @@ bool Debugger::Cmd_PriorityRegions(int argc, const char **argv) {
regionNum = strToInt(argv[1]);
// Colour index to use for the first priority region
- int colour = 16;
+ int colour = 16;
int count = 0;
// Lock the background surface for access
@@ -145,7 +145,7 @@ bool Debugger::Cmd_PriorityRegions(int argc, const char **argv) {
}
}
- regionsDesc += Common::String::format("Region Priority = %d bounds=%d,%d,%d,%d\n",
+ regionsDesc += Common::String::format("Region Priority = %d bounds=%d,%d,%d,%d\n",
r._regionId, r._bounds.left, r._bounds.top, r._bounds.right, r._bounds.bottom);
}