1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

getpalette and getdefpalette may no longer return a NULL pointer.

git-svn-id: svn://svn.cc65.org/cc65/trunk@2569 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-10-23 09:30:37 +00:00
parent ca72fb45b4
commit 3531023e22

View File

@ -136,14 +136,10 @@ void __fastcall__ tgi_setpalette (const unsigned char* palette);
*/
const unsigned char* __fastcall__ tgi_getpalette (void);
/* Return the current palette. Will return NULL for drivers that do not
* support palettes.
*/
/* Return the current palette. */
const unsigned char* __fastcall__ tgi_getdefpalette (void);
/* Return the default palette. Will return NULL for drivers that do not
* support palettes.
*/
/* Return the default palette. */
unsigned __fastcall__ tgi_getxres (void);
/* Return the resolution in X direction. */