Skip to content

Commit 8bdb2db

Browse files
committed
missing 0 in constant - build fix
1 parent b9440c7 commit 8bdb2db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/kernel.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,7 @@ _current_sft_idx dw 0 ;28A - SFT index for next open
881881
times (292h - ($ - _internal_data)) db 0
882882
dw __PriPathBuffer ; 292 - "sda_WFP_START" offset in DOS DS of first filename argument
883883
dw __SecPathBuffer ; 294 - "sda_REN_WFP" offset in DOS DS of second filename argument
884-
dw ffffh ; 296 - 0xffff or offset of last component in filename
884+
dw 0ffffh ; 296 - 0xffff or offset of last component in filename
885885

886886
; Pad to 05ceh
887887
times (2aeh - ($ - _internal_data)) db 0

0 commit comments

Comments
 (0)