Added hitdump. It's not yet complete in the sense that it can tolerate any input file you give it, but it can correctly disassemble every HIT file in both games now.

This commit is contained in:
Fatbag 2012-07-26 13:35:45 -05:00
parent 90c703188b
commit 6b0b0c1d9c
9 changed files with 1121 additions and 88 deletions

View file

@ -150,7 +150,7 @@ int main(int argc, char *argv[]){
printf("File \"%s\" exists.\nContinue anyway? (y/n) ", OutFile);
c = getchar();
if(c != 'y' && c != 'Y'){
printf("\nAborted.");
printf("\nAborted.\n");
return -1;
}
}

View file

@ -146,7 +146,7 @@ int main(int argc, char *argv[]){
printf("File \"%s\" exists.\nContinue anyway? (y/n) ", OutFile);
c = getchar();
if(c != 'y' && c != 'Y'){
printf("\nAborted.");
printf("\nAborted.\n");
return -1;
}
}