Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Template for new versions:
## Fixes

## Misc Improvements
- Core: added ``gps`` (``graphicst``) to the set of globals whose sizes must agree for DFHack to pass initialization checks

## Documentation

Expand Down
1 change: 1 addition & 0 deletions library/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1682,6 +1682,7 @@ bool Core::InitMainThread() {
{ "world", sizeof(df::world) },
{ "game", sizeof(df::gamest) },
{ "plotinfo", sizeof(df::plotinfost) },
{ "gps", sizeof(df::graphic) },
};

for (auto& gte : *df::global::global_table)
Expand Down