gme needs the same patching as for other ports. p_spec.cpp uses chars, which are unsigned on ARM and POWER by default. Approved by: tier 2 blanket MFH: 2021Q1
11 lines
453 B
C++
11 lines
453 B
C++
--- src/p_spec.cpp.orig 2021-03-05 01:22:24 UTC
|
|
+++ src/p_spec.cpp
|
|
@@ -1269,7 +1269,7 @@ void P_InitSectorSpecial(sector_t *sector, int special
|
|
if (sector->special >= Scroll_North_Slow &&
|
|
sector->special <= Scroll_SouthWest_Fast)
|
|
{ // Hexen scroll special
|
|
- static const char hexenScrollies[24][2] =
|
|
+ static const signed char hexenScrollies[24][2] =
|
|
{
|
|
{ 0, 1 }, { 0, 2 }, { 0, 4 },
|
|
{ -1, 0 }, { -2, 0 }, { -4, 0 },
|