]> git.sur5r.net Git - cc65/commitdiff
tgi_free_vectorfont maps to free and must therefore be fastcall.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 27 Jan 2013 14:39:35 +0000 (14:39 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 27 Jan 2013 14:39:35 +0000 (14:39 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5970 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/tgi.h

index 2cbea5bd06dad3b6c1de42024fee04ef3ed7ffd3..661403370809059966f0af1b492c7c6891aca8fe 100644 (file)
@@ -6,7 +6,7 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2002-2011, Ullrich von Bassewitz                                      */
+/* (C) 2002-2013, Ullrich von Bassewitz                                      */
 /*                Roemerstrasse 52                                           */
 /*                D-70794 Filderstadt                                        */
 /* EMail:         uz@cc65.org                                                */
@@ -111,7 +111,7 @@ void __fastcall__ tgi_install_vectorfont (const tgi_vectorfont* font);
  * with a NULL pointer to uninstall the currently installed font.
  */
 
-void tgi_free_vectorfont (const tgi_vectorfont* font);
+void __fastcall__ tgi_free_vectorfont (const tgi_vectorfont* font);
 /* Free a vector font that was previously loaded into memory. */
 
 unsigned char tgi_geterror (void);