minor cleanup
This commit is contained in:
parent
5f79b9ce8c
commit
4978ec6633
@ -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);
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user