Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LagoLunatic committed Jan 20, 2024
1 parent 153ff2e commit 8737518
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asm/patches/hero_mode.asm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ multiply_damage_amount:
fcmpo cr0, f1, f0 ; Compare the amount of damage (f1) to 0.0f (f0)
bge multiply_damage_amount_return ; Don't multiply the amount if it's not negative
; Multiply the amount of damage in f1 by damage multiplier value set by the randomizer.
; Multiply the amount of damage in f1 by the damage multiplier value set by the randomizer.
lis r4, damage_multiplier@ha
addi r4, r4, damage_multiplier@l
lfs f0, 0 (r4)
Expand Down
2 changes: 1 addition & 1 deletion wwr_ui/randomizer_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def randomization_complete(self):
if self.randomizer_thread.randomizer.dry_run:
text = """Randomization complete.<br><br>
Note: You chose to do a dry run, meaning <u>no playable ISO was generated</u>.<br>
To actually play the randomizer, uncheck the Dry Run checkbox in the Other Options tab, then click Randomize again."""
To actually play the randomizer, uncheck the Dry Run checkbox in the Advanced Options tab, then click Randomize again."""

self.randomizer_thread = None

Expand Down

0 comments on commit 8737518

Please sign in to comment.