obsolete dupdate

This commit is contained in:
KikooDX 2021-11-18 11:08:09 +01:00
parent 2403783b3a
commit 26e8e1e1aa
3 changed files with 1 additions and 4 deletions

View File

@ -20,7 +20,6 @@ Functions:
* `void rDrawEnd(void);`
* `void dclear(int color);`
* `void drect(int x1, int y1, int x2, int y2, int color);`
* `void dupdate(void);`
## `raygint/keyboard.h`
Functions:

View File

@ -31,4 +31,3 @@ void rDisplayInit(void);
void rDisplayDeinit(void);
void rDrawBegin(void);
void rDrawEnd(void);
void dupdate(void);

View File

@ -5,10 +5,9 @@ void rDisplayInit(void) { InitWindow(DWIDTH, DHEIGHT, "raygint"); }
void rDisplayDeinit(void) { CloseWindow(); }
void rDrawBegin(void) { BeginDrawing(); }
void rDrawEnd(void) { EndDrawing(); }
void dupdate(void) {}
#else
void rDisplayInit(void) {}
void rDisplayDeinit(void) {}
void rDrawBegin(void) {}
void rDrawEnd(void) {}
void rDrawEnd(void) { dupdate(); }
#endif