use proper access functions to ResourceData.
This commit is contained in:
parent
4da196a416
commit
7d0ad4897f
4 changed files with 5 additions and 5 deletions
|
|
@ -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())
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue