incomplete ui upgrades
[vg.git] / vg_log.h
index cc42761b69e7dd5777e60765f47d7cfaac669e6c..72dd82c4dfa9cd3ac62301cc2cfb86bc968a42a9 100644 (file)
--- a/vg_log.h
+++ b/vg_log.h
 #define PRINTF_v3f( V3 ) "%.4f %.4f %.4f\n",      V3[0], V3[1], V3[2]
 #define PRINTF_v4f( V4 ) "%.4f %.4f %.4f %.4f\n", V4[0], V4[1], V4[2], V4[3]
 
+#ifdef _WIN32
+ #define PRINTF_U64 "%llu"
+#else
+ #define PRINTF_U64 "%lu"
+#endif
+
 #ifdef VG_GAME
 static SDL_SpinLock log_print_sl;
 #endif