sys_rsx: Fix gcm events spam

In realhw the events are only sent if they are masked in driver_info->handlers as well.
This commit is contained in:
Eladash 2020-04-07 18:31:19 +03:00 committed by kd-11
parent 3f48450408
commit f7536bbce0
3 changed files with 45 additions and 17 deletions

View file

@ -2424,7 +2424,7 @@ namespace rsx
if (u64 to_unmap = unmap_status[i])
{
// Each 64 entries are grouped by a bit
const u64 io_event = 0x100000000ull << i;
const u64 io_event = SYS_RSX_EVENT_UNMAPPED_BASE << i;
g_fxo->get<lv2_rsx_config>()->send_event(0, io_event, to_unmap);
}
}