Skip to content

Commit

Permalink
Merge pull request #535 from Pedro-Beirao/master
Browse files Browse the repository at this point in the history
Fix missing condition for -track_reality
  • Loading branch information
Pedro-Beirao authored Nov 22, 2024
2 parents 4eee12a + 0b625b7 commit 8585b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prboom2/src/dsda.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ void dsda_DisplayNotifications(void) {
dsda_DisplayNotification("100K achieved!");
}

if (!dsda_reality && !dsda_almost_reality_note_shown) {
if (!dsda_reality && dsda_track_reality && !dsda_almost_reality_note_shown) {
if (!dsda_almost_reality && !dsda_almost_reality_note_shown) {
dsda_almost_reality_note_shown = true;
dsda_DisplayNotification("Not reality / almost reality!");
Expand Down

0 comments on commit 8585b4a

Please sign in to comment.