From a12a19fdac1e514754a14cd0d8c3d944ce2f2842 Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Sun, 13 Jan 2013 16:49:55 -0800 Subject: [PATCH] Cleanup. --- include/bx/timer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bx/timer.h b/include/bx/timer.h index 1b1b47c..40a62dd 100644 --- a/include/bx/timer.h +++ b/include/bx/timer.h @@ -40,7 +40,7 @@ namespace bx struct timeval now; gettimeofday(&now, 0); int64_t i64 = now.tv_sec*1000000 + now.tv_usec; -#endif // BNET_PLATFORM_ +#endif // BX_PLATFORM_ static int64_t offset = i64; return i64 - offset; } @@ -59,7 +59,7 @@ namespace bx return (int64_t)(info.denom * 1000000) / info.numer; #else return 1000000; -#endif // BNET_PLATFORM_ +#endif // BX_PLATFORM_ } } // namespace bx