Browse Source

filesystem: fix Windows build

pull/2/head
Alibek Omarov 1 year ago
parent
commit
9cd9744407
  1. 2
      filesystem/filesystem.c

2
filesystem/filesystem.c

@ -1716,7 +1716,7 @@ int FS_SetCurrentDirectory( const char *path ) @@ -1716,7 +1716,7 @@ int FS_SetCurrentDirectory( const char *path )
NULL, GetLastError(), MAKELANGID( LANG_ENGLISH, SUBLANG_DEFAULT ),
buf, sizeof( buf ), NULL );
Sys_Error( "Changing directory to %s failed: %s\n", path, buf )
Sys_Error( "Changing directory to %s failed: %s\n", path, buf );
return false;
}
#elif XASH_POSIX

Loading…
Cancel
Save