We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bb8e6f commit 2a21afcCopy full SHA for 2a21afc
src/xrServerEntities/xrServer_Object_Base.cpp
@@ -108,6 +108,9 @@ CSE_Abstract::CSE_Abstract(LPCSTR caSection)
108
if (pSettings->line_exist(caSection, "custom_data"))
109
{
110
pcstr const raw_file_name = pSettings->r_string(caSection, "custom_data");
111
+#ifdef LINUX
112
+ while (char* sep = strchr((char *)raw_file_name, '\\')) *sep = '/';
113
+#endif
114
IReader const* config = nullptr;
115
#ifdef XRGAME_EXPORTS
116
if (ai().get_alife())
0 commit comments