mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-29 09:29:10 +00:00
Fix: Narrowing cast in one storybook command
CompanyID is 8 bit wide, so this incorrect cast would make it impossible to create story page elements for pages past 255.
This commit is contained in:
committed by
Charles Pigott
parent
a82f21f24d
commit
59e4ccd7dc
@@ -154,7 +154,7 @@ CommandCost CmdCreateStoryPageElement(TileIndex tile, DoCommandFlag flags, uint3
|
||||
{
|
||||
if (!StoryPageElement::CanAllocateItem()) return CMD_ERROR;
|
||||
|
||||
StoryPageID page_id = (CompanyID)GB(p1, 0, 16);
|
||||
StoryPageID page_id = (StoryPageID)GB(p1, 0, 16);
|
||||
StoryPageElementType type = Extract<StoryPageElementType, 16, 8>(p1);
|
||||
|
||||
/* Allow at most 128 elements per page. */
|
||||
|
Reference in New Issue
Block a user