bkaradzic 13 년 전
부모
커밋
a12a19fdac
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      include/bx/timer.h

+ 2 - 2
include/bx/timer.h

@@ -40,7 +40,7 @@ namespace bx
 		struct timeval now;
 		struct timeval now;
 		gettimeofday(&now, 0);
 		gettimeofday(&now, 0);
 		int64_t i64 = now.tv_sec*1000000 + now.tv_usec;
 		int64_t i64 = now.tv_sec*1000000 + now.tv_usec;
-#endif // BNET_PLATFORM_
+#endif // BX_PLATFORM_
 		static int64_t offset = i64;
 		static int64_t offset = i64;
 		return i64 - offset;
 		return i64 - offset;
 	}
 	}
@@ -59,7 +59,7 @@ namespace bx
 		return (int64_t)(info.denom * 1000000) / info.numer;
 		return (int64_t)(info.denom * 1000000) / info.numer;
 #else
 #else
 		return 1000000;
 		return 1000000;
-#endif // BNET_PLATFORM_
+#endif // BX_PLATFORM_
 	}
 	}
 
 
 } // namespace bx
 } // namespace bx