This commit is contained in:
tavo 2025-10-03 17:14:57 -06:00
parent 15bea3de8d
commit 0d6f484b4a

View file

@ -74,11 +74,11 @@ static char SKR_LAST_ERROR[SKR_LAST_ERROR_SIZE];
* @return int 1 if no error, 0 if an error exists. * @return int 1 if no error, 0 if an error exists.
* *
* @usage * @usage
* if (!SKR_OK()) { * if (!SKR_OK) {
* fprintf(stderr, "Error: %s\n", SKR_LAST_ERROR); * fprintf(stderr, "Error: %s\n", SKR_LAST_ERROR);
* } * }
*/ */
#define SKR_OK() (SKR_LAST_ERROR[0] == '\0') #define SKR_OK (SKR_LAST_ERROR[0] == '\0')
/** /**
* @brief Maximum number of bone influences per vertex. * @brief Maximum number of bone influences per vertex.