uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit 4d2b55c1884a24aaed395090bdbe25a61937582c
parent 5ebeaf6852d1b8e122c6b3d9f8cf52d33651c65e
Author: neauoire <aliceffekt@gmail.com>
Date:   Mon, 20 Dec 2021 09:45:56 -0800

Removed stdio from ppu

Diffstat:
Msrc/devices/ppu.h | 1-
Msrc/uxnemu.c | 2+-
2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/devices/ppu.h b/src/devices/ppu.h @@ -1,4 +1,3 @@ -#include <stdio.h> #include <stdlib.h> /* diff --git a/src/uxnemu.c b/src/uxnemu.c @@ -568,7 +568,7 @@ run(Uxn *u) uxn_eval(u, peek16((devaudio0 + (event.type - audio0_event))->dat, 0)); } } -breakout: + breakout: uxn_eval(u, devscreen->vector); if(ppu.reqdraw || devsystem->dat[0xe]) redraw(u);