Update text for disabled rtx

This commit is contained in:
NightFox 2021-12-03 01:31:04 +03:00 committed by Ivan Avdeev
parent 8e0be3c372
commit fb79c1937f
1 changed files with 1 additions and 1 deletions

View File

@ -24,6 +24,6 @@ void VK_LoadCvars( void )
if (vk_core.rtx) {
vk_rtx = gEngine.Cvar_Get( "vk_rtx", "1", FCVAR_GLCONFIG, "Enable or disable Ray Tracing mode" );
} else {
vk_rtx = gEngine.Cvar_Get( "vk_rtx", "0", FCVAR_READ_ONLY, "DISABLED: not supported without -rtx" );
vk_rtx = gEngine.Cvar_Get( "vk_rtx", "0", FCVAR_READ_ONLY, "DISABLED: not supported by your hardware/software" );
}
}