diff options
author | sanine-a <sanine.not@pm.me> | 2020-06-05 18:20:49 -0500 |
---|---|---|
committer | sanine-a <sanine.not@pm.me> | 2020-06-05 18:20:49 -0500 |
commit | e4dd7978d24f53465c8475bd3a027047b4a53bb8 (patch) | |
tree | 5c861830a2f7ad6ed2bcc0f9f04cd504403b3292 /include/model.h | |
parent | 70784cdb24628e758df27cbe1965ff83102decb0 (diff) |
refactor: rename honey_error to honey_result
Diffstat (limited to 'include/model.h')
-rw-r--r-- | include/model.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/model.h b/include/model.h index 00d20b7..d210792 100644 --- a/include/model.h +++ b/include/model.h @@ -22,7 +22,7 @@ typedef struct { * @param[out] model Pointer to the destination honey_model struct. * @param[in] path Path of the model to be loaded. */ -honey_error honey_model_load(honey_model* model, char* path); +honey_result honey_model_load(honey_model* model, char* path); void honey_model_draw(honey_model* model, honey_shader shader); void honey_model_delete(honey_model* model); |