Code Editing Tutorials
Removing extra space from Menu (below Quit when ReadMe is disabled)

 

By: Kyle Albert

Ever wonder how to get that extra space below quit to go away, this tutorial will show you how.

Step 1:

Open WL_MENU.H and goto Line 49, you should see something like this:

#ifndef SPEAR
#define MENU_H 13*10+6
#else
#define MENU_H 13*9+6
#endif

Change that to:

#ifndef SPEAR
#define MENU_H 13*9+6 // We changed the "10" to "9"
#else
#define MENU_H 13*9+6
#endif


Step 2:

Compile and Link Up! Now there should be no extra space below Quit if you did this right.


 

Get back to the Dome tutorials
Jump to the top