1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-07 00:25:45 +00:00

Don't hide errors in error handling

You don't want the low byte, see grep _ERR_ libsrc/tgi/*
This commit is contained in:
polluks2
2022-09-02 11:55:54 +02:00
committed by GitHub
parent ce6ee1b891
commit 446a785f95

View File

@@ -29,6 +29,6 @@ _tgi_unload:
jmp _mod_free ; Free the driver
no_driver:
lda #<TGI_ERR_NO_DRIVER
lda #TGI_ERR_NO_DRIVER
sta _tgi_error
rts