Fixed map size with big map mode
This commit is contained in:
parent
669300d4a4
commit
8c7767cc4b
1 changed files with 2 additions and 2 deletions
|
@ -456,8 +456,8 @@ local void UiToggleBigMap(void)
|
|||
|
||||
TheUI.MapArea.X = 0;
|
||||
TheUI.MapArea.Y = 0;
|
||||
TheUI.MapArea.EndX = ((VideoWidth / TileSizeX) * TileSizeX) - 1;
|
||||
TheUI.MapArea.EndY = ((VideoHeight / TileSizeY) * TileSizeY) - 1;
|
||||
TheUI.MapArea.EndX = VideoWidth - 1;
|
||||
TheUI.MapArea.EndY = VideoHeight - 1;
|
||||
|
||||
SetViewportMode(TheUI.ViewportMode);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue