memory-wip branch merged

This commit is contained in:
Nekotekina 2014-08-31 02:15:11 +04:00
commit 367b8e7129
17 changed files with 1203 additions and 150 deletions

View file

@ -44,8 +44,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());
}