Skip to content

Commit

Permalink
Fixed my previous fixes on CusPoP options.
Browse files Browse the repository at this point in the history
  • Loading branch information
NagyD committed Mar 24, 2018
1 parent 078d69b commit bc3e099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/seg002.c
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ void __pascal far Jaffar_exit() {
// seg002:0665
void __pascal far level3_set_chkp() {
// Special event: set checkpoint
if (current_level == /*3*/ custom->checkpoint_level && Char.room == 7) {
if (current_level == /*3*/ custom->checkpoint_level && Char.room == 7 /* TODO: add a custom option */) {
checkpoint = 1;
hitp_beg_lev = hitp_max;
}
Expand Down Expand Up @@ -521,7 +521,7 @@ void __pascal far play_mirr_mus() {
leveldoor_open != 0x4D && // was the music played already?
current_level == /*4*/ custom->mirror_level &&
Char.curr_row == /*0*/ custom->mirror_row &&
Char.room == /*11*/ custom->mirror_room
Char.room == 11 /* TODO: add a custom option */
) {
play_sound(sound_25_presentation); // presentation (level 4 mirror)
leveldoor_open = 0x4D;
Expand Down

0 comments on commit bc3e099

Please sign in to comment.