use proper access functions to ResourceData.

This commit is contained in:
Christoph Oelckers 2023-12-10 10:32:16 +01:00
commit 7d0ad4897f
4 changed files with 5 additions and 5 deletions

View file

@ -63,7 +63,7 @@ struct HexDataSource
FScanner sc;
auto data = resf->Read(index);
sc.OpenMem("newconsolefont.hex", (const char*)data.data(), data.size());
sc.OpenMem("newconsolefont.hex", data.string(), data.size());
sc.SetCMode(true);
glyphdata.Push(0); // ensure that index 0 can be used as 'not present'.
while (sc.GetString())

View file

@ -306,7 +306,7 @@ unsigned FSavegameManagerBase::ExtractSaveData(int index)
auto data = resf->Read(info);
FSerializer arc;
if (!arc.OpenReader((const char*)data.data(), data.size()))
if (!arc.OpenReader(data.string(), data.size()))
{
return index;
}