aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChrisDill <chrisdude134@gmail.com>2018-09-27 15:54:02 +0100
committerChrisDill <chrisdude134@gmail.com>2018-09-27 15:54:02 +0100
commit73701c12b224b8d0461d50bdd5e3b98f7aaa2297 (patch)
tree74b35d743821ce193f14690cd961ff50d6f12555 /src
parent1836e02c1ef9909d25bbb89b9d9fdd6ec934aada (diff)
parent29eddb9ff3fda090ed416a2736a6d2db4cca77e9 (diff)
downloadraylib-73701c12b224b8d0461d50bdd5e3b98f7aaa2297.tar.gz
raylib-73701c12b224b8d0461d50bdd5e3b98f7aaa2297.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src')
-rw-r--r--src/core.c3
-rw-r--r--src/raylib.icobin105907 -> 9752 bytes
-rw-r--r--src/raylib.rc2
3 files changed, 2 insertions, 3 deletions
diff --git a/src/core.c b/src/core.c
index e785e735..5b9db9fa 100644
--- a/src/core.c
+++ b/src/core.c
@@ -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';
diff --git a/src/raylib.ico b/src/raylib.ico
index afeb12b9..0cedcc55 100644
--- a/src/raylib.ico
+++ b/src/raylib.ico
Binary files differ
diff --git a/src/raylib.rc b/src/raylib.rc
index ee2a5fab..2aaa5e26 100644
--- a/src/raylib.rc
+++ b/src/raylib.rc
@@ -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"