summaryrefslogtreecommitdiff
path: root/source/kit/status.h
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-02-29 00:51:42 +0100
committerMitya Selivanov <automainint@guattari.tech>2024-02-29 00:51:42 +0100
commit2dab66694bb72ee222a44c49c669e9f5adc024f0 (patch)
tree53e89f2cdab40292801da8fe8fb0a511d39377bb /source/kit/status.h
parent0948d02a5a3abae918fa8f5fe1587e19cd0ada41 (diff)
downloadsaw-2dab66694bb72ee222a44c49c669e9f5adc024f0.zip
Load audio file with miniaudio instead of dr_libs; Fix null dereference when loading empty sampler
Diffstat (limited to 'source/kit/status.h')
-rw-r--r--source/kit/status.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/kit/status.h b/source/kit/status.h
index 7ea1c4d..88eb5e0 100644
--- a/source/kit/status.h
+++ b/source/kit/status.h
@@ -8,7 +8,7 @@
enum {
KIT_OK = 0,
KIT_PARSING_FAILED = 1,
- KIT_ERROR_BAD_ALLOC = (1 << 1),
+ KIT_ERROR_OUT_OF_MEMORY = (1 << 1),
KIT_ERROR_INVALID_ARGUMENT = (1 << 2),
KIT_ERROR_MKDIR_FAILED = (1 << 3),
KIT_ERROR_RMDIR_FAILED = (1 << 4),