cellgcm: Fix SET_REFERENCE initial value

This commit is contained in:
eladash 2018-09-19 08:32:08 +03:00 committed by kd-11
parent e6b68b260a
commit 1a6c819176
3 changed files with 4 additions and 3 deletions

View file

@ -427,7 +427,7 @@ s32 _cellGcmInitBody(vm::pptr<CellGcmContextData> context, u32 cmdSize, u32 ioSi
auto& ctrl = vm::_ref<CellGcmControl>(m_config->gcm_info.control_addr);
ctrl.put = 0;
ctrl.get = 0;
ctrl.ref = -1;
ctrl.ref = 0; // Set later to -1 at RSX initialization
render->intr_thread = idm::make_ptr<ppu_thread>("_gcm_intr_thread", 1, 0x4000);
render->intr_thread->run();