add an option to preserve position invariance

This commit is contained in:
Samuliak 2024-12-18 16:38:55 +01:00
parent 4281f6e0c8
commit fa004a33c6
No known key found for this signature in database
7 changed files with 21 additions and 2 deletions

View file

@ -259,6 +259,7 @@ void InfoLog_PrintActiveSettings()
cemuLog_log(LogType::Force, "Async compile: {}", GetConfig().async_compile.GetValue() ? "true" : "false");
cemuLog_log(LogType::Force, "Fast math: {}", g_current_game_profile->GetFastMath() ? "true" : "false");
cemuLog_log(LogType::Force, "Buffer cache type: {}", g_current_game_profile->GetBufferCacheMode());
cemuLog_log(LogType::Force, "Position invariance: {}", g_current_game_profile->GetPositionInvariance() ? "true" : "false");
if (!GetConfig().vk_accurate_barriers.GetValue())
cemuLog_log(LogType::Force, "Accurate barriers are disabled!");
}