minor cleanup

This commit is contained in:
jacob 2024-04-03 02:48:43 -05:00
parent 5f79b9ce8c
commit 4978ec6633
2 changed files with 1 additions and 3 deletions

View File

@ -139,7 +139,6 @@ extern "C" {
/* Address sanitization */ /* Address sanitization */
#if ASAN #if ASAN
#pragma comment(lib, "clang_rt.asan-x86_64.lib")
void __asan_poison_memory_region(void *, size_t); void __asan_poison_memory_region(void *, size_t);
void __asan_unpoison_memory_region(void *, size_t); void __asan_unpoison_memory_region(void *, size_t);
# define ASAN_POISON(addr, size) __asan_poison_memory_region(addr, size); # define ASAN_POISON(addr, size) __asan_poison_memory_region(addr, size);

View File

@ -13,8 +13,6 @@
#define GAME_FPS 50.0 #define GAME_FPS 50.0
#define GAME_TIMESCALE 1.0 #define GAME_TIMESCALE 1.0
#define USER_FRAME_LIMIT 300.0
/* How many ticks back in time should the user blend between? /* How many ticks back in time should the user blend between?
* Delay ms = USER_INTERP_OFFSET_TICK_RATIO * Game tick rate * 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) * 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 AUDIO_ENABLED 0
#define VSYNC_ENABLED 0 #define VSYNC_ENABLED 0
#define USER_FRAME_LIMIT 300.0