Updated Toy

This commit is contained in:
2023-06-13 08:27:31 +10:00
parent 3fba4e9b48
commit 301b4ad636
5 changed files with 43 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ void Dbg_clearConsole();
typedef struct Dbg_Timer {
const char* name;
clock_t start;
char* log;
char log[2048];
int logPos;
} Dbg_Timer;
@@ -20,7 +20,7 @@ void Dbg_freeTimer(Dbg_Timer*);
typedef struct Dbg_FPSCounter {
int count;
clock_t start;
char* log;
char log[256];
} Dbg_FPSCounter;
void Dbg_initFPSCounter(Dbg_FPSCounter*);