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:
parent
98f773c652
commit
b53add0ba4
2 changed files with 1 additions and 3 deletions
|
@ -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) {
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
#include <stdio.h>
|
||||
|
||||
/*
|
||||
Copyright (c) 2021 Devine Lu Linvega
|
||||
|
||||
|
|
Loading…
Reference in a new issue