From 4978ec6633a85bb2b57b6b80a120be42b4679ba6 Mon Sep 17 00:00:00 2001 From: jacob Date: Wed, 3 Apr 2024 02:48:43 -0500 Subject: [PATCH] minor cleanup --- src/common.h | 1 - src/config.h | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common.h b/src/common.h index e8b6a2b0..d6a44593 100644 --- a/src/common.h +++ b/src/common.h @@ -139,7 +139,6 @@ extern "C" { /* Address sanitization */ #if ASAN -#pragma comment(lib, "clang_rt.asan-x86_64.lib") void __asan_poison_memory_region(void *, size_t); void __asan_unpoison_memory_region(void *, size_t); # define ASAN_POISON(addr, size) __asan_poison_memory_region(addr, size); diff --git a/src/config.h b/src/config.h index 0a8d3dd3..b50066a1 100644 --- a/src/config.h +++ b/src/config.h @@ -13,8 +13,6 @@ #define GAME_FPS 50.0 #define GAME_TIMESCALE 1.0 -#define USER_FRAME_LIMIT 300.0 - /* How many ticks back in time should the user blend between? * Delay ms = USER_INTERP_OFFSET_TICK_RATIO * Game tick rate * E.g: At 1.5, the user thread will render 49.5ms back in time (if game thread runs at 30FPS) @@ -31,3 +29,4 @@ #define AUDIO_ENABLED 0 #define VSYNC_ENABLED 0 +#define USER_FRAME_LIMIT 300.0