[Scummvm-cvs-logs] SF.net SVN: scummvm: [26325] scummvm/trunk/engines/gob

drmccoy at users.sourceforge.net drmccoy at users.sourceforge.net
Thu Mar 29 22:53:38 CEST 2007


Revision: 26325
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26325&view=rev
Author:   drmccoy
Date:     2007-03-29 13:53:37 -0700 (Thu, 29 Mar 2007)

Log Message:
-----------
Replaced some more intenting space that slipped in with tabs

Modified Paths:
--------------
    scummvm/trunk/engines/gob/inter.h
    scummvm/trunk/engines/gob/map_v1.cpp

Modified: scummvm/trunk/engines/gob/inter.h
===================================================================
--- scummvm/trunk/engines/gob/inter.h	2007-03-29 20:49:37 UTC (rev 26324)
+++ scummvm/trunk/engines/gob/inter.h	2007-03-29 20:53:37 UTC (rev 26325)
@@ -117,15 +117,15 @@
 	typedef void (Inter_v1::*OpcodeDrawProcV1)();
 	typedef bool (Inter_v1::*OpcodeFuncProcV1)(OpFuncParams &);
 	typedef void (Inter_v1::*OpcodeGoblinProcV1)(OpGobParams &);
-  struct OpcodeDrawEntryV1 {
+	struct OpcodeDrawEntryV1 {
 		OpcodeDrawProcV1 proc;
 		const char *desc;
 	};
-  struct OpcodeFuncEntryV1 {
+	struct OpcodeFuncEntryV1 {
 		OpcodeFuncProcV1 proc;
 		const char *desc;
 	};
-  struct OpcodeGoblinEntryV1 {
+	struct OpcodeGoblinEntryV1 {
 		OpcodeGoblinProcV1 proc;
 		const char *desc;
 	};
@@ -312,15 +312,15 @@
 	typedef void (Inter_v2::*OpcodeDrawProcV2)();
 	typedef bool (Inter_v2::*OpcodeFuncProcV2)(OpFuncParams &);
 	typedef void (Inter_v2::*OpcodeGoblinProcV2)(OpGobParams &);
-  struct OpcodeDrawEntryV2 {
+	struct OpcodeDrawEntryV2 {
 		OpcodeDrawProcV2 proc;
 		const char *desc;
 	};
-  struct OpcodeFuncEntryV2 {
+	struct OpcodeFuncEntryV2 {
 		OpcodeFuncProcV2 proc;
 		const char *desc;
 	};
-  struct OpcodeGoblinEntryV2 {
+	struct OpcodeGoblinEntryV2 {
 		OpcodeGoblinProcV2 proc;
 		const char *desc;
 	};
@@ -398,15 +398,15 @@
 	typedef void (Inter_Bargon::*OpcodeDrawProcBargon)();
 	typedef bool (Inter_Bargon::*OpcodeFuncProcBargon)(OpFuncParams &);
 	typedef void (Inter_Bargon::*OpcodeGoblinProcBargon)(OpGobParams &);
-  struct OpcodeDrawEntryBargon {
+	struct OpcodeDrawEntryBargon {
 		OpcodeDrawProcBargon proc;
 		const char *desc;
 		};
-  struct OpcodeFuncEntryBargon {
+	struct OpcodeFuncEntryBargon {
 		OpcodeFuncProcBargon proc;
 		const char *desc;
 		};
-  struct OpcodeGoblinEntryBargon {
+	struct OpcodeGoblinEntryBargon {
 		OpcodeGoblinProcBargon proc;
 		const char *desc;
 		};

Modified: scummvm/trunk/engines/gob/map_v1.cpp
===================================================================
--- scummvm/trunk/engines/gob/map_v1.cpp	2007-03-29 20:49:37 UTC (rev 26324)
+++ scummvm/trunk/engines/gob/map_v1.cpp	2007-03-29 20:53:37 UTC (rev 26325)
@@ -48,9 +48,9 @@
 
 	_itemsMap = new int16*[_mapHeight];
 	 for (int i = 0; i < _mapHeight; i++) {
-    _itemsMap[i] = new int16[_mapWidth];
+		_itemsMap[i] = new int16[_mapWidth];
 		memset(_itemsMap[i], 0, _mapWidth * sizeof(int16));
-  }
+	}
 
 	_wayPointsCount = 40;
 	_wayPoints = new Point[40];


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list