Merge pull request #656 from rg3/msaa_samples_text_fix

Fix text indicating MSAA samples for Vulkan
This commit is contained in:
Yamagi 2021-01-27 07:15:32 +01:00 committed by GitHub
commit 506ccfa309
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
{