06-04-2024, 04:37 PM
Note: As per a report from @grymmjack -- thanks for testing and reporting! -- Linux may toss an error for you, due to pathing and font location.
Change this line (Line 17):
To point to whatever monochrome font you like on your system.
Windows stores fonts in "C:/Windows/Fonts/", and QB64PE will search there for them. Linux tends to be a little less organized with various places to put stuff, so it has to be spelled out exactly pathwise where/what you want to use.
With this one simple change, it compiled and ran on Linux, so this shouldn't be a hard change for everyone to make to get it working on your system.
Change this line (Line 17):
Code: (Select All)
LargeFont = _LOADFONT("courbd.ttf", 48, "monospace")
To point to whatever monochrome font you like on your system.
Windows stores fonts in "C:/Windows/Fonts/", and QB64PE will search there for them. Linux tends to be a little less organized with various places to put stuff, so it has to be spelled out exactly pathwise where/what you want to use.
With this one simple change, it compiled and ran on Linux, so this shouldn't be a hard change for everyone to make to get it working on your system.