Skip to content

Commit 8b5635b

Browse files
authored
Update ReadMe.md
1 parent 0819c42 commit 8b5635b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ReadMe.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,14 @@ The main purpose of the library is to make creation of menu's in games easy. Thi
4242

4343
unsigned int TitleFontSize = 50;
4444
unsigned int ItemFontSize = 20;
45-
46-
float MenuTitleScaleFactor = 0.125; //This scale determines the distance between Title and the first option
45+
4746
float MenuItemScaleFactor = 0.25; // This determines the distance between options.
4847

4948
int layout = Layout::Default; // Bitflag, Defines the layout of menu. eg. Layout::ItemLeft| Layout::TitleCentre
5049

5150
struct {
5251
signed int top, left;
53-
} Padding; // this is the padding that will extra displacement that will always be added.
52+
} PaddingTitle, PaddingItems; // this is the padding that will extra displacement that will always be added.
5453
```
5554
5655
* Now create an object of `gmenuMenu` which require the following parameters:

0 commit comments

Comments
 (0)