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:
Niels Martin Hansen 2019-07-17 22:08:41 +02:00
parent 88950d8f23
commit 331eba544a
1 changed files with 1 additions and 1 deletions

View File

@ -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. */