mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Fix being able to see box corners on map screen with custom graphics
The text box drawn at the bottom of the map screen isn't wide enough, so it's possible to see the corners on the right side of the text box if you have custom graphics like I do. The solution is to increase the width of the text box by one tile.
This commit is contained in:
parent
96660cd235
commit
47460143e2
1 changed files with 1 additions and 1 deletions
|
@ -1931,7 +1931,7 @@ void maprender(void)
|
|||
|
||||
|
||||
//Menubar:
|
||||
graphics.drawtextbox( -10, 212, 42, 3, 65, 185, 207);
|
||||
graphics.drawtextbox( -10, 212, 43, 3, 65, 185, 207);
|
||||
|
||||
// Draw the selected page name at the bottom
|
||||
// menupage 0 - 3 is the pause screen
|
||||
|
|
Loading…
Reference in a new issue