diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-02-29 00:51:42 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-02-29 00:51:42 +0100 |
commit | 2dab66694bb72ee222a44c49c669e9f5adc024f0 (patch) | |
tree | 53e89f2cdab40292801da8fe8fb0a511d39377bb /source/kit/test.h | |
parent | 0948d02a5a3abae918fa8f5fe1587e19cd0ada41 (diff) | |
download | saw-2dab66694bb72ee222a44c49c669e9f5adc024f0.zip |
Load audio file with miniaudio instead of dr_libs; Fix null dereference when loading empty sampler
Diffstat (limited to 'source/kit/test.h')
-rw-r--r-- | source/kit/test.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/kit/test.h b/source/kit/test.h index 24a25c9..ca2b7c0 100644 --- a/source/kit/test.h +++ b/source/kit/test.h @@ -725,7 +725,7 @@ int kit_run_tests(int argc, char **argv) { quiet || printf("FAILED\n"); } - no_color || kit_print_color_(kit_white_); + no_color || kit_print_color_(kit_light_); quiet || printf("\n"); return status; } @@ -1099,7 +1099,7 @@ int kit_run_benchmarks(int argc, char **argv) { printf("DONE WITH ERRORS\n"); } - no_color || kit_print_color_(kit_white_); + no_color || kit_print_color_(kit_light_); printf("\n"); return status; } |