Fix bug where too short of a filename would not give launch error dialog

This commit is contained in:
Juhani Krekelä 2023-03-27 20:40:01 +03:00
parent 81695d4403
commit d762793c1c
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ launch:
; Is it a .bin file?
cmp cx, 4
jb .end ; No, too short
jb .not_launchable ; No, too short
mov si, launch_filename
add si, cx
sub si, 4