mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-18 22:51:50 +00:00
Backport horiz correction code for polymost
# Conflicts: # source/build/include/polymost.h # source/build/src/polymost.cpp
This commit is contained in:
parent
ff6820aa92
commit
e948d78fd0
2 changed files with 3 additions and 1 deletions
|
@ -117,7 +117,6 @@ uint8_t RemapPLU(uint8_t pal)
|
||||||
{
|
{
|
||||||
if (pal != kPalRedBrite)
|
if (pal != kPalRedBrite)
|
||||||
pal = kPalGreenBrite;
|
pal = kPalGreenBrite;
|
||||||
return pal;
|
|
||||||
}
|
}
|
||||||
else if (bTorch)
|
else if (bTorch)
|
||||||
{
|
{
|
||||||
|
|
|
@ -63,6 +63,9 @@ short nEnemyPal = 0;
|
||||||
void InitView()
|
void InitView()
|
||||||
{
|
{
|
||||||
screensize = (short)xdim;
|
screensize = (short)xdim;
|
||||||
|
#ifdef USE_OPENGL
|
||||||
|
polymostcenterhoriz = 92;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE - not to be confused with Ken's analyzesprites()
|
// NOTE - not to be confused with Ken's analyzesprites()
|
||||||
|
|
Loading…
Reference in a new issue