From: cuz Date: Sun, 29 Dec 2002 20:58:36 +0000 (+0000) Subject: Removed param from tgi_init() X-Git-Tag: V2.12.0~1813 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cd77c6ab90a5e6d0aa2e6110acc885b3951e4dc0;p=cc65 Removed param from tgi_init() git-svn-id: svn://svn.cc65.org/cc65/trunk@1860 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/tgi.h b/include/tgi.h index 5e39efdfd..b30286e3d 100644 --- a/include/tgi.h +++ b/include/tgi.h @@ -79,8 +79,8 @@ void __fastcall__ tgi_load_driver (const char* name); void __fastcall__ tgi_unload (void); /* Unload the currently loaded driver. Will call tgi_done if necessary. */ -void __fastcall__ tgi_init (unsigned char mode); -/* Initialize the given graphics mode. */ +void __fastcall__ tgi_init (void); +/* Initialize the already loaded graphics driver */ void __fastcall__ tgi_done (void); /* End graphics mode, switch back to text mode. Will NOT unload the driver! */