Fix text indicating MSAA samples for Vulkan

This commit is contained in:
Ricardo Garcia 2021-01-23 09:56:24 +01:00
parent 449776d3f6
commit bb827cad8c
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ void Vk_Strings_f(void)
R_Printf(PRINT_ALL, " resolution: %dx%d", vid.width, vid.height);
if (msaa > 0)
{
R_Printf(PRINT_ALL, " (MSAAx%d)\n", 2 << (msaa - 1));
R_Printf(PRINT_ALL, " (MSAAx%d)\n", msaa);
}
else
{