Changed to PascalCase
This commit is contained in:
parent
44191a4125
commit
7bfb9fd3ba
|
|
@ -145,7 +145,7 @@
|
|||
#include "camera.h" // Camera system functionality
|
||||
#endif
|
||||
|
||||
#define ignore_result(x) if (x) {} // This should fix compiler warnings
|
||||
#define IgnoreResult(x) if (x) {} // This should fix compiler warnings
|
||||
|
||||
#if defined(SUPPORT_GIF_RECORDING)
|
||||
#define RGIF_MALLOC RL_MALLOC
|
||||
|
|
@ -2061,7 +2061,7 @@ const char *GetWorkingDirectory(void)
|
|||
static char currentDir[MAX_FILEPATH_LENGTH];
|
||||
memset(currentDir, 0, MAX_FILEPATH_LENGTH);
|
||||
|
||||
ignore_result(GETCWD(currentDir, MAX_FILEPATH_LENGTH - 1));
|
||||
IgnoreResult(GETCWD(currentDir, MAX_FILEPATH_LENGTH - 1));
|
||||
|
||||
return currentDir;
|
||||
}
|
||||
|
|
@ -2328,7 +2328,7 @@ void OpenURL(const char *url)
|
|||
#elif defined(__APPLE__)
|
||||
sprintf(cmd, "open '%s'", url);
|
||||
#endif
|
||||
ignore_result(system(cmd));
|
||||
IgnoreResult(system(cmd));
|
||||
RL_FREE(cmd);
|
||||
#endif
|
||||
#if defined(PLATFORM_WEB)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user