-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.0c: Fix a bug in the part-removal code
Oops, I forgot to update some of the part addresses in the patch. Fixed now. Also added copying the source to the output directory in build.sh.
- Loading branch information
Showing
3 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ Commander Keen 1 Randomiser | |
=========================== | ||
|
||
Author: David Gow <[email protected]> | ||
Version: 1.0b | ||
Version: 1.0c | ||
Website: https://davidgow.net/keen/randomiser.html | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -578,9 +578,9 @@ void WritePerItemPatch(FILE *f, int level, int item) | |
else if (item == K1_T_BATTERY) | ||
fprintf(f, "\t\t$C7 $06 $AA9CW $0000W\n", level); | ||
else if (item == K1_T_VACUUM) | ||
fprintf(f, "\t\t$C7 $06 $AA94W $0000W\n", level); | ||
fprintf(f, "\t\t$C7 $06 $AA96W $0000W\n", level); | ||
else if (item == K1_T_EVERCLEAR) | ||
fprintf(f, "\t\t$C7 $06 $AA94W $0000W\n", level); | ||
fprintf(f, "\t\t$C7 $06 $AA98W $0000W\n", level); | ||
|
||
uint8_t end_off = 0x4FA0 - (offset + 13); | ||
fprintf(f, "\t\t$EB $%02x\n\n", end_off); | ||
|
@@ -626,7 +626,7 @@ void WritePatchFooter(FILE *f) | |
void PrintBanner() | ||
{ | ||
printf("Keen 1 Randomiser\n"); | ||
printf("\tv1.00b\n"); | ||
printf("\tv1.00c\n"); | ||
printf("\tBy David Gow <[email protected]>\n\n"); | ||
} | ||
|
||
|