mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-07-27 07:31:44 +03:00
lsteamclient: Fix end of string check in relative path conversion.
This commit is contained in:
parent
bc6237f9b1
commit
dd1b59b191
@ -164,7 +164,7 @@ bool steamclient_dos_path_to_unix_path(const char *src, char *dst, int is_url)
|
||||
const char *s;
|
||||
char *d;
|
||||
|
||||
for(s = src, d = dst; *src; ++s, ++d){
|
||||
for(s = src, d = dst; *s; ++s, ++d){
|
||||
if(*s == '\\')
|
||||
*d = '/';
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user