Skip to content

Commit

Permalink
Correcting Fatal messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Clownacy committed Jun 3, 2015
1 parent a1c085f commit f22d62a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions s1.sounddriver.asm
Expand Up @@ -2607,9 +2607,9 @@ SegaPCM_End
even

if SegaPCM_End-SegaPCM>$8000
fatal "Sega sound must fit within $8000 bytes, but you have a $%h byte Sega sound.",SegaPCM_End-SegaPCM
fatal "Sega sound must fit within $8000 bytes, but you have a $\{SegaPCM_End-SegaPCM} byte Sega sound."
endif
if SegaPCM_End-SegaPCM>Size_of_SegaPCM
fatal "Size_of_SegaPCM = $%h, but you have a $%h byte Sega sound.",Size_of_SegaPCM,SegaPCM_End-SegaPCM
fatal "Size_of_SegaPCM = $\{Size_of_SegaPCM}, but you have a $\{SegaPCM_End-SegaPCM} byte Sega sound."
endif

0 comments on commit f22d62a

Please sign in to comment.