render/bgfx: Use platform-specific path separator more consistently

This commit is contained in:
AJR 2021-02-05 20:30:56 -05:00
parent 427baac766
commit fa40bb8dfb

View File

@ -136,7 +136,7 @@ bgfx_chain_entry* chain_entry_reader::read_from_value(const Value& value, std::s
} }
else else
{ {
file_path = file_directory + "/" + file; file_path = file_directory + PATH_SEPARATOR + file;
} }
// check for .png extension // check for .png extension