ByteStream: Move routines from FileSystem to ByteStream

This commit is contained in:
Connor McLaughlin
2022-07-08 20:11:31 +10:00
parent d81e156a29
commit b5bf3593c4
13 changed files with 155 additions and 357 deletions

View File

@ -691,7 +691,7 @@ bool CheatList::LoadFromPackage(const std::string& game_code)
if (!stream)
return false;
std::string db_string = FileSystem::ReadStreamToString(stream.get());
std::string db_string = ByteStream::ReadStreamToString(stream.get());
stream.reset();
if (db_string.empty())
return false;