uxn

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

commit b53add0ba48afdcc08f2efdf8985e9a1ba190f03
parent 98f773c652bc5ada42183e5eda5271e4f6ddd3a8
Author: Marc Schraffenberger <marc@schraffenberger.com>
Date:   Sun,  1 Aug 2021 21:16:03 +0100

Removed stdio include from uxn.h

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

diff --git a/src/devices/apu.c b/src/devices/apu.c @@ -84,7 +84,7 @@ apu_start(Apu *c, Uint16 adsr, Uint8 pitch) Uint8 apu_get_vu(Apu *c) { - size_t i; + int i; Sint32 sum[2]; if(!c->advance || !c->period) return 0; for(i = 0; i < 2; ++i) { diff --git a/src/uxn.h b/src/uxn.h @@ -1,5 +1,3 @@ -#include <stdio.h> - /* Copyright (c) 2021 Devine Lu Linvega