0
0
Fork 0
mirror of https://git.sr.ht/~rabbits/uxn synced 2024-11-16 11:15:06 +00:00

Removed stdio include from uxn.h

This commit is contained in:
Marc Schraffenberger 2021-08-01 21:16:03 +01:00 committed by Andrew Alderwick
parent 98f773c652
commit b53add0ba4
2 changed files with 1 additions and 3 deletions

View file

@ -84,7 +84,7 @@ apu_start(Apu *c, Uint16 adsr, Uint8 pitch)
Uint8 Uint8
apu_get_vu(Apu *c) apu_get_vu(Apu *c)
{ {
size_t i; int i;
Sint32 sum[2]; Sint32 sum[2];
if(!c->advance || !c->period) return 0; if(!c->advance || !c->period) return 0;
for(i = 0; i < 2; ++i) { for(i = 0; i < 2; ++i) {

View file

@ -1,5 +1,3 @@
#include <stdio.h>
/* /*
Copyright (c) 2021 Devine Lu Linvega Copyright (c) 2021 Devine Lu Linvega