@@ -8,6 +8,7 @@ clang-format -i src/emulator.c
clang-format -i src/debugger.c
clang-format -i src/ppu.c
clang-format -i src/apu.c
+clang-format -i src/apu.h
echo "Cleaning.."
rm -f ./bin/assembler
@@ -37,9 +37,9 @@ typedef struct {
} Note;
typedef struct {
- Queue *queue;
- Note *notes;
- int n_notes;
+ Queue *queue;
+ Note *notes;
+ int n_notes;
} Apu;
void apu_render(Apu *apu, Uxn *u, Sint16 *samples, int n_samples);