Quote:
Originally Posted by GeoffR
Set the margin size by changing the very last line of the patch. The example changes it from 10px to 25px:
Code:
# Replacement value: a 2-digit number (margin size in pixels) seperated by \x00
# E.g. 25 = 2\x005, 30 = 3\x000, etc.
replace_string = C99BAC, `1\x000`, `2\x005`
If you wanted it bigger, say 40px, then change the last line to:
Code:
replace_string = C99BAC, `1\x000`, `4\x000`
|
Is the default top margin really 1\x000? If so, that would explain the small blank space at the top of the screen. So if we JUST do
Code:
replace_string = C99BAC, `1\x000`, `0\x000`
would that work?