06-28-2024, 07:35 PM
I think it's SCREEN 0 then WIDTH 80,43 etc. to change the video modes.
From here: https://qb64phoenix.com/qb64wiki/index.php/WIDTH
So if you are in SCREEN 0 and want 80 columns and 25 rows:
If you want 40x25:
If you want 80x50:
Hope that helps!
wiki Wrote:SCREEN 0 can use 80 or 40 columns and 25, 43 or 50 rows. Default is WIDTH 80, 25.
From here: https://qb64phoenix.com/qb64wiki/index.php/WIDTH
So if you are in SCREEN 0 and want 80 columns and 25 rows:
Code: (Select All)
SCREEN 0
WIDTH 80,25
If you want 40x25:
Code: (Select All)
SCREEN 0
WIDTH 40,25
If you want 80x50:
Code: (Select All)
SCREEN 0
WIDTH 80,50
Hope that helps!