FileSystem: Migrate component extractors to std::string_view
This commit is contained in:
@ -66,7 +66,8 @@ bool CDImageCueSheet::OpenAndParse(const char* filename)
|
||||
}
|
||||
|
||||
// get the directory of the filename
|
||||
std::string basepath = FileSystem::GetPathDirectory(filename) + "/";
|
||||
std::string basepath(FileSystem::GetPathDirectory(filename));
|
||||
basepath += "/";
|
||||
m_filename = filename;
|
||||
|
||||
u32 disc_lba = 0;
|
||||
|
||||
Reference in New Issue
Block a user