mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-09 03:16:27 +00:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
@@ -1424,8 +1424,7 @@ const char *GetDirectoryPath(const char *fileName)
|
||||
memset(filePath, 0, 256);
|
||||
|
||||
lastSlash = strprbrk(fileName, "\\/");
|
||||
if (!lastSlash)
|
||||
return NULL;
|
||||
if (!lastSlash) return NULL;
|
||||
|
||||
strncpy(filePath, fileName, strlen(fileName) - (strlen(lastSlash) - 1));
|
||||
filePath[strlen(fileName) - strlen(lastSlash)] = '\0';
|
||||
|
BIN
src/raylib.ico
BIN
src/raylib.ico
Binary file not shown.
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 9.5 KiB |
@@ -9,7 +9,7 @@ BEGIN
|
||||
//BLOCK "080904E4" // English UK
|
||||
BLOCK "040904E4" // English US
|
||||
BEGIN
|
||||
VALUE "CompanyName", "raylib technologies"
|
||||
//VALUE "CompanyName", "raylib technologies"
|
||||
VALUE "FileDescription", "Created using raylib (www.raylib.com)"
|
||||
VALUE "FileVersion", "2.0.0"
|
||||
VALUE "InternalName", "raylib app"
|
||||
|
Reference in New Issue
Block a user