pre-xmas commit

This commit is contained in:
2019-12-23 17:55:31 +01:00
parent db3d7283df
commit 119a61c0e5
12 changed files with 146 additions and 67 deletions

View File

@@ -25,7 +25,7 @@ ao_device *device;
int foo;
device = init_ao_output(44100);
fprintf(stderr, "AO init -> %p\n", device);
if (verbosity) fprintf(stderr, "AO init -> %p\n", device);
switch (k) {
case 0:
@@ -40,7 +40,7 @@ switch (k) {
}
foo = close_ao_output(device);
fprintf(stderr, "AO close -> %d\n", foo);
if (verbosity) fprintf(stderr, "AO close -> %d\n", foo);
return 0;
}