瀏覽代碼

Fixed TICK_CACHE support (#8783)

Fixed a type mismatch since the introduction of t_tick
Lemongrass3110 6 月之前
父節點
當前提交
c346ab52bc
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/common/timer.cpp

+ 1 - 1
src/common/timer.cpp

@@ -166,7 +166,7 @@ static t_tick tick(void)
 static t_tick gettick_cache;
 static int gettick_count = 1;
 
-unsigned int gettick_nocache(void)
+t_tick gettick_nocache(void)
 {
 	gettick_count = TICK_CACHE;
 	gettick_cache = tick();