sync with master

This commit is contained in:
FunkyFr3sh 2019-08-07 12:45:40 +02:00
parent c9229738ec
commit 0a779ac4fe
33 changed files with 13499 additions and 188 deletions

View file

@ -8,6 +8,7 @@ double CounterStop();
void DebugPrint(const char *format, ...);
void DrawFrameInfoStart();
void DrawFrameInfoEnd();
int dprintf(const char *fmt, ...);
extern double DebugFrameTime;
extern DWORD DebugFrameCount;
@ -24,6 +25,8 @@ extern DWORD DebugFrameCount;
#ifdef _DEBUG_S
#define printf(format, ...) DebugPrint("xDBG " format, ##__VA_ARGS__)
#else
#define printf(format, ...) dprintf(format, ##__VA_ARGS__)
#endif
#else