Merge branch 'main' of git.sr.ht:~rabbits/uxn

This commit is contained in:
neauoire 2021-09-17 11:25:31 -07:00
commit cba316cf3a
3 changed files with 5 additions and 5 deletions

4
mkfile
View File

@ -1,9 +1,9 @@
</$objtype/mkfile
TARG=bin/uxncli bin/uxnasm bin/uxnemu
USM=`{walk -f projects/ | grep '\.tal$' | grep -v blank.tal}
USM=`{walk -f projects/ | grep '\.tal$' | grep -v blank.tal | grep -v /library/}
ROM=${USM:%.tal=%.rom}
CFLAGS=$CFLAGS -D__plan9__ -DNO_PORTMIDI -I/sys/include/npe -I/sys/include/npe/SDL2
CFLAGS=$CFLAGS -D__plan9__ -I/sys/include/npe -I/sys/include/npe/SDL2
HFILES=\
/sys/include/npe/stdio.h\
src/devices/apu.h\

View File

@ -76,7 +76,7 @@ ppu_init(Ppu *p, Uint8 hor, Uint8 ver)
{
p->width = 8 * hor;
p->height = 8 * ver;
p->bg = malloc(p->width / 4 * p->height * sizeof(Uint8));
p->fg = malloc(p->width / 4 * p->height * sizeof(Uint8));
p->bg = calloc(1, p->width / 4 * p->height * sizeof(Uint8));
p->fg = calloc(1, p->width / 4 * p->height * sizeof(Uint8));
return 1;
}

View File

@ -19,7 +19,7 @@ typedef unsigned int Uint32;
typedef struct Ppu {
Uint16 width, height;
Uint8 *pixels, *bg, *fg;
Uint8 *bg, *fg;
} Ppu;
int ppu_init(Ppu *p, Uint8 hor, Uint8 ver);