mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Screenshot fix
This commit is contained in:
parent
12a50c140c
commit
35c078dc1e
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ void DCanvas::GetScreenshotBuffer(const BYTE *&buffer, int &pitch, ESSType &colo
|
||||||
{
|
{
|
||||||
Lock(true);
|
Lock(true);
|
||||||
buffer = GetBuffer();
|
buffer = GetBuffer();
|
||||||
pitch = GetPitch();
|
pitch = IsBgra() ? GetPitch() * 4 : GetPitch();
|
||||||
color_type = IsBgra() ? SS_BGRA : SS_PAL;
|
color_type = IsBgra() ? SS_BGRA : SS_PAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue