- fix wrong screenshot gamma

This commit is contained in:
Magnus Norddahl 2019-05-10 18:02:27 +02:00
parent c96d8c198e
commit 7957c423aa
1 changed files with 1 additions and 1 deletions

View File

@ -790,7 +790,7 @@ TArray<uint8_t> VulkanFrameBuffer::GetScreenshotBuffer(int &pitch, ESSType &colo
pitch = w * 3;
color_type = SS_RGB;
gamma = 2.2f;
gamma = 1.0f;
return ScreenshotBuffer;
}