diff options
| author | Ray <[email protected]> | 2022-09-07 00:39:38 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2022-09-07 00:39:38 +0200 |
| commit | ac1ffbad1d80dc0fcebe4b105347764733b78ff3 (patch) | |
| tree | 007748c0302b3d79384ff80cce9681605b2f5594 /src/raylib.h | |
| parent | b09725fa84f2dfc2c766cdcf4e9bc8aff097048d (diff) | |
| download | raylib-ac1ffbad1d80dc0fcebe4b105347764733b78ff3.tar.gz raylib-ac1ffbad1d80dc0fcebe4b105347764733b78ff3.zip | |
REVIEWED: Data type to unsigned
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h index 3f03effe..693da140 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1039,8 +1039,8 @@ RLAPI void SetConfigFlags(unsigned int flags); // Setup init RLAPI void TraceLog(int logLevel, const char *text, ...); // Show trace log messages (LOG_DEBUG, LOG_INFO, LOG_WARNING, LOG_ERROR...) RLAPI void SetTraceLogLevel(int logLevel); // Set the current threshold (minimum) log level -RLAPI void *MemAlloc(int size); // Internal memory allocator -RLAPI void *MemRealloc(void *ptr, int size); // Internal memory reallocator +RLAPI void *MemAlloc(unsigned int size); // Internal memory allocator +RLAPI void *MemRealloc(void *ptr, unsigned int size); // Internal memory reallocator RLAPI void MemFree(void *ptr); // Internal memory free RLAPI void OpenURL(const char *url); // Open URL with default system browser (if available) |
