Replaced some more intenting space that slipped in with tabs

svn-id: r26325
This commit is contained in:
Sven Hesse 2007-03-29 20:53:37 +00:00
parent 046fe5060b
commit 57fc863819
2 changed files with 11 additions and 11 deletions

View File

@ -117,15 +117,15 @@ protected:
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 @@ protected:
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 @@ protected:
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;
};

View File

@ -48,9 +48,9 @@ void Map_v1::init(void) {
_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];