disable vsync

This commit is contained in:
Evan Pratten 2021-10-03 00:01:40 -04:00
parent 1351fcd537
commit 81c3fa7078

View File

@ -158,12 +158,12 @@ pub async fn game_begin(game_config: &mut GameConfig) -> Result<(), Box<dyn std:
game_config.base_window_size.1, game_config.base_window_size.1,
) )
.title(&format!("[{}]", game_config.name)) .title(&format!("[{}]", game_config.name))
.vsync()
.msaa_4x() .msaa_4x()
.resizable() .resizable()
.replace_logger() .replace_logger()
.build(); .build();
rl.set_exit_key(None); rl.set_exit_key(None);
rl.set_target_fps(60);
raylib_thread = thread; raylib_thread = thread;
// Build the game context // Build the game context