This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
raylib-src
mirror of
https://github.com/raysan5/raylib
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
24
Wiki
Activity
Browse Source
WARNING: Fix breaking issue (introduced some days ago)
pull/3935/head
Ray
9 months ago
parent
f15455552d
commit
2e77443209
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/rcore.c
+ 1
- 1
src/rcore.c
View File
@ -1964,7 +1964,7 @@ const char *GetFileName(const char *filePath)
if
(
filePath
!
=
NULL
)
fileName
=
strprbrk
(
filePath
,
"
\\
/
"
)
;
if
(
fileName
!
=
NULL
)
return
filePath
;
if
(
fileName
=
=
NULL
)
return
filePath
;
return
fileName
+
1
;
}
Write
Preview
Loading…
Cancel
Save