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
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) {

View File

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