Browse code

Added apu.h to clang-format

Andrew Alderwick authored on 08/04/2021 20:21:46
Showing 2 changed files
... ...
@@ -8,6 +8,7 @@ clang-format -i src/emulator.c
8 8
 clang-format -i src/debugger.c
9 9
 clang-format -i src/ppu.c
10 10
 clang-format -i src/apu.c
11
+clang-format -i src/apu.h
11 12
 
12 13
 echo "Cleaning.."
13 14
 rm -f ./bin/assembler
... ...
@@ -37,9 +37,9 @@ typedef struct {
37 37
 } Note;
38 38
 
39 39
 typedef struct {
40
-    Queue *queue;
41
-    Note *notes;
42
-    int n_notes;
40
+	Queue *queue;
41
+	Note *notes;
42
+	int n_notes;
43 43
 } Apu;
44 44
 
45 45
 void apu_render(Apu *apu, Uxn *u, Sint16 *samples, int n_samples);