summaryrefslogtreecommitdiff
path: root/src/story.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/story.cpp')
-rw-r--r--src/story.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/story.cpp b/src/story.cpp
index 38faafd2f..4c7063cf0 100644
--- a/src/story.cpp
+++ b/src/story.cpp
@@ -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. */