mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 06:52:20 +00:00
[NEW] GRRLIB_Credit that you HAVE to call at least ONCE in your code to
respect author desire !! ( thanks to respect our work following this rule !!)
This commit is contained in:
parent
108103ea2c
commit
34d1f99199
4 changed files with 3981 additions and 0 deletions
|
@ -60,6 +60,8 @@ ChangeLog :
|
|||
|
||||
* add GRRLIB_Exit to free the memory allocated by GRRLIB
|
||||
|
||||
* add GRRLIB_Credit that you HAVE to call at least ONCE in your code to respect author desire !! ( thanks to respect our work following this rule !!)
|
||||
|
||||
have a look at the sample code to see how all this work ;)
|
||||
|
||||
Remember that 3.0.5 is a WIP preview for the soon coming GRRLIB 4.0 and it's not intend to be publicly released...
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -74,6 +74,7 @@ void GRRLIB_GXEngine(Vector v[], u32 color, long count, u8 fmt);
|
|||
|
||||
|
||||
void GRRLIB_Init();
|
||||
void GRRLIB_Credit();
|
||||
|
||||
void GRRLIB_Render();
|
||||
|
||||
|
|
|
@ -64,6 +64,8 @@ int main() {
|
|||
|
||||
GRRLIB_Init();
|
||||
|
||||
GRRLIB_Credit();
|
||||
|
||||
fatInitDefault();
|
||||
WPAD_Init();
|
||||
WPAD_SetDataFormat(WPAD_CHAN_0, WPAD_FMT_BTNS_ACC_IR);
|
||||
|
|
Loading…
Reference in a new issue