updated to ppu_init()

This commit is contained in:
sejo 2021-08-18 19:50:15 -05:00
parent bd1d2ab5fe
commit e30f184923
1 changed files with 1 additions and 1 deletions

View File

@ -1067,7 +1067,7 @@ as of today, the way of changing the screen size in uxnemu is by editing its sou
in the uxn repo we downloaded, inside the src/ directory, there's uxnemu.c, with a line that looks like the following:
```
if(!initppu(&ppu, 64, 40))
if(!ppu_init(&ppu, 64, 40))
```
those two numbers, 64 and 40, are the default screen size in tiles, as we mentioned above.