Make old WoodenBSupportsPaintSetup() overload static

This commit is contained in:
Gymnasiast 2023-11-12 20:28:05 +01:00
parent fd0b90a049
commit d0fe45048b
No known key found for this signature in database
GPG Key ID: DBFFF47AB2CA3EDD
2 changed files with 1 additions and 3 deletions

View File

@ -730,7 +730,7 @@ bool WoodenASupportsPaintSetupRotated(
*
* @return (al) whether supports have been drawn
*/
bool WoodenBSupportsPaintSetup(
static bool WoodenBSupportsPaintSetup(
PaintSession& session, int32_t supportType, int32_t special, int32_t height, ImageId imageTemplate)
{
if (!(session.Flags & PaintSessionFlags::PassedSurface))

View File

@ -128,8 +128,6 @@ bool WoodenASupportsPaintSetup(
bool WoodenASupportsPaintSetupRotated(
PaintSession& session, WoodenSupportType supportType, WoodenSupportSubType subType, Direction direction, int32_t height,
ImageId imageTemplate, WoodenSupportTransitionType transitionType = WoodenSupportTransitionType::None);
bool WoodenBSupportsPaintSetup(
PaintSession& session, int32_t supportType, int32_t special, int32_t height, ImageId imageTemplate);
bool WoodenBSupportsPaintSetup(
PaintSession& session, WoodenSupportType supportType, WoodenSupportSubType subType, int32_t height, ImageId imageTemplate,
WoodenSupportTransitionType transitionType = WoodenSupportTransitionType::None, Direction direction = 0);