no func
This commit is contained in:
parent
15bea3de8d
commit
0d6f484b4a
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue