Implemented vm::var.

MemoryAllocator replaced with vm::var
This commit is contained in:
DHrpcs3 2014-07-31 19:08:02 +03:00
parent 6cb083be1a
commit cd33be1491
16 changed files with 763 additions and 149 deletions

View file

@ -269,8 +269,9 @@ int cellFontInit(mem_ptr_t<CellFontConfig> config)
{
cellFont->Log("cellFontInit(config=0x%x)", config.GetAddr());
MemoryAllocator<u64> revisionFlags = 0;
cellFontGetRevisionFlags(revisionFlags.GetAddr());
vm::var<u64> revisionFlags;
revisionFlags.value() = 0;
cellFontGetRevisionFlags(revisionFlags.addr());
return cellFontInitializeWithRevision(revisionFlags, config.GetAddr());
}