Browse code

Removed stdio include from uxn.h

Marc Schraffenberger authored on 01/08/2021 20:16:03 • Andrew Alderwick committed on 01/08/2021 21:17:48
Showing 2 changed files
... ...
@@ -84,7 +84,7 @@ apu_start(Apu *c, Uint16 adsr, Uint8 pitch)
84 84
 Uint8
85 85
 apu_get_vu(Apu *c)
86 86
 {
87
-	size_t i;
87
+	int i;
88 88
 	Sint32 sum[2];
89 89
 	if(!c->advance || !c->period) return 0;
90 90
 	for(i = 0; i < 2; ++i) {
... ...
@@ -1,5 +1,3 @@
1
-#include <stdio.h>
2
-
3 1
 /*
4 2
 Copyright (c) 2021 Devine Lu Linvega
5 3