tgi_vectorchar takes now a char argument. Added tgi_install_vectorfont.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4454 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
24
libsrc/tgi/tgi_install_vectorfont.s
Normal file
24
libsrc/tgi/tgi_install_vectorfont.s
Normal file
@@ -0,0 +1,24 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 2009-11-06
|
||||
;
|
||||
|
||||
.include "tgi-kernel.inc"
|
||||
|
||||
|
||||
;-----------------------------------------------------------------------------
|
||||
; void __fastcall__ tgi_install_vectorfont (const tgi_vectorfont* font);
|
||||
; /* Install a vector font for use. More than one vector font can be loaded,
|
||||
; * but only one can be active. This function is used to tell which one. Call
|
||||
; * with a NULL pointer to uninstall the currently installed font.
|
||||
; */
|
||||
;
|
||||
|
||||
.code
|
||||
.proc _tgi_install_vectorfont
|
||||
|
||||
sta _tgi_vectorfont
|
||||
stx _tgi_vectorfont+1
|
||||
rts
|
||||
|
||||
.endproc
|
||||
|
||||
Reference in New Issue
Block a user