Formatting tweaks

This commit is contained in:
raysan5
2016-08-31 10:27:29 +02:00
parent d27709b1f2
commit a9ab516dae
5 changed files with 19 additions and 19 deletions

View File

@ -1068,7 +1068,7 @@ static void UnloadWave(Wave wave)
const char *GetExtension(const char *fileName)
{
const char *dot = strrchr(fileName, '.');
if(!dot || dot == fileName) return "";
if (!dot || dot == fileName) return "";
return (dot + 1);
}
@ -1083,7 +1083,7 @@ void TraceLog(int msgType, const char *text, ...)
traceDebugMsgs = 0;
#endif
switch(msgType)
switch (msgType)
{
case INFO: fprintf(stdout, "INFO: "); break;
case ERROR: fprintf(stdout, "ERROR: "); break;