mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- Fix typo in pal drawers that caused rendering errors for non-64x64 flats
This commit is contained in:
parent
c144eefdad
commit
dd6e0b63f2
1 changed files with 20 additions and 20 deletions
|
@ -2151,8 +2151,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -2222,8 +2222,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -2298,8 +2298,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -2338,8 +2338,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -2421,8 +2421,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -2474,8 +2474,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -2559,8 +2559,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -2603,8 +2603,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -2689,8 +2689,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
@ -2746,8 +2746,8 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
uint8_t srcwidth = _srcwidth;
|
||||
uint8_t srcheight = _srcheight;
|
||||
uint32_t srcwidth = _srcwidth;
|
||||
uint32_t srcheight = _srcheight;
|
||||
|
||||
do
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue