DEVTOOLS: Silence compiler warnings in create_access.
This commit is contained in:
parent
c09a9aa1bf
commit
2ef9ced7a9
5 changed files with 6 additions and 6 deletions
|
@ -754,4 +754,4 @@ const char *const IQLABELS_ENG[9] = {
|
||||||
|
|
||||||
const char *const CANT_GET_THERE_ENG = "YOU CAN'T GET THERE FROM HERE.";
|
const char *const CANT_GET_THERE_ENG = "YOU CAN'T GET THERE FROM HERE.";
|
||||||
|
|
||||||
};
|
} // End of namespace Amazon
|
||||||
|
|
|
@ -57,6 +57,6 @@ extern const char *const HELPLVLTXT_ENG[3];
|
||||||
extern const char *const IQLABELS_ENG[9];
|
extern const char *const IQLABELS_ENG[9];
|
||||||
extern const char *const CANT_GET_THERE_ENG;
|
extern const char *const CANT_GET_THERE_ENG;
|
||||||
|
|
||||||
};
|
} // End of namespace Amazon
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -160,7 +160,7 @@ void writeMartianCommonData() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool processExecutable(int idx, const char *name) {
|
bool processExecutable(int exeIdx, const char *name) {
|
||||||
uint dataSegmentOffset;
|
uint dataSegmentOffset;
|
||||||
uint filenamesOffset, numFilenames;
|
uint filenamesOffset, numFilenames;
|
||||||
uint charsStart, charsEnd;
|
uint charsStart, charsEnd;
|
||||||
|
@ -291,7 +291,7 @@ bool processExecutable(int idx, const char *name) {
|
||||||
|
|
||||||
// Write out header entry
|
// Write out header entry
|
||||||
uint outputOffset = outputFile.size();
|
uint outputOffset = outputFile.size();
|
||||||
outputFile.seek(8 + idx * 8);
|
outputFile.seek(8 + exeIdx * 8);
|
||||||
outputFile.writeByte(gameId);
|
outputFile.writeByte(gameId);
|
||||||
outputFile.writeByte(discType);
|
outputFile.writeByte(discType);
|
||||||
outputFile.writeByte(demoType);
|
outputFile.writeByte(demoType);
|
||||||
|
|
|
@ -179,4 +179,4 @@ const char *const INVENTORY_NAMES_ENG[55] = {
|
||||||
"MONKEY WRENCH", "BIG DICK CARD", "BRA", "BOLT", nullptr
|
"MONKEY WRENCH", "BIG DICK CARD", "BRA", "BOLT", nullptr
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
} // End of namespace Amazon
|
||||||
|
|
|
@ -47,6 +47,6 @@ extern const char *const HELPLVLTXT_ENG[3];
|
||||||
extern const char *const IQLABELS_ENG[9];
|
extern const char *const IQLABELS_ENG[9];
|
||||||
extern const char *const CANT_GET_THERE_ENG;
|
extern const char *const CANT_GET_THERE_ENG;
|
||||||
|
|
||||||
};
|
} // End of namespace Amazon
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue