corrected notes on changing default screen size. thanks marshall!

This commit is contained in:
sejo 2021-10-02 17:12:51 -05:00
parent f73db1fa10
commit 159d034156
1 changed files with 3 additions and 2 deletions

View File

@ -1087,10 +1087,11 @@ it would be important to keep in mind the responsiveness aspects that are discus
originally, the way of changing the screen size in uxnemu implied editing its source code.
in the uxn repo we downloaded, inside the src/ directory, there's uxnemu.c, with a line that looks like the following:
in the uxn repo we downloaded, inside the src/ directory, there's uxnemu.c, with a couple of lines that look like the following:
```
if(!ppu_init(&ppu, 64, 40))
#define WIDTH 64 * 8
#define HEIGHT 40 * 8
```
those two numbers, 64 and 40, are the default screen size in tiles, as we mentioned above.