mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 11:33:03 +01:00
Fix refactor error in MiniGolf.cpp
This commit is contained in:
@@ -908,7 +908,7 @@ static void paint_mini_golf_hole_d(paint_session * session, uint8 rideIndex, uin
|
||||
break;
|
||||
}
|
||||
|
||||
if (direction & 1)
|
||||
if (supportType & 1)
|
||||
{
|
||||
boundBox = { 26, 32 };
|
||||
boundBoxOffset = { 3, 0 };
|
||||
@@ -1000,7 +1000,7 @@ static void paint_mini_golf_hole_e(paint_session * session, uint8 rideIndex, uin
|
||||
break;
|
||||
}
|
||||
|
||||
if (direction & 1)
|
||||
if (supportType & 1)
|
||||
{
|
||||
boundBox = { 26, 32 };
|
||||
boundBoxOffset = { 3, 0 };
|
||||
|
||||
Reference in New Issue
Block a user