mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Fix text indicating MSAA samples for Vulkan
This commit is contained in:
parent
449776d3f6
commit
bb827cad8c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue