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
|
@ -160,7 +160,7 @@ void writeMartianCommonData() {
|
|||
}
|
||||
}
|
||||
|
||||
bool processExecutable(int idx, const char *name) {
|
||||
bool processExecutable(int exeIdx, const char *name) {
|
||||
uint dataSegmentOffset;
|
||||
uint filenamesOffset, numFilenames;
|
||||
uint charsStart, charsEnd;
|
||||
|
@ -291,7 +291,7 @@ bool processExecutable(int idx, const char *name) {
|
|||
|
||||
// Write out header entry
|
||||
uint outputOffset = outputFile.size();
|
||||
outputFile.seek(8 + idx * 8);
|
||||
outputFile.seek(8 + exeIdx * 8);
|
||||
outputFile.writeByte(gameId);
|
||||
outputFile.writeByte(discType);
|
||||
outputFile.writeByte(demoType);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue