mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-03 17:32:26 +00:00
- fixed crash with texture upscaling in the truecolor software renderer.
Based on: 4746d0c626
This commit is contained in:
parent
68e0e52aaf
commit
65df05cba2
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ const uint32_t *FSoftwareTexture::GetPixelsBgra()
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
auto tempbuffer = mSource->CreateTexBuffer(0, mBufferFlags);
|
auto tempbuffer = mSource->CreateTexBuffer(0, mBufferFlags | CTF_Upscale);
|
||||||
CreatePixelsBgraWithMipmaps();
|
CreatePixelsBgraWithMipmaps();
|
||||||
PalEntry *pe = (PalEntry*)tempbuffer.mBuffer;
|
PalEntry *pe = (PalEntry*)tempbuffer.mBuffer;
|
||||||
for (int y = 0; y < GetPhysicalHeight(); y++)
|
for (int y = 0; y < GetPhysicalHeight(); y++)
|
||||||
|
|
Loading…
Reference in a new issue