mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-06-04 05:38:24 +00:00
fix a constant in regress/ro_mem_test.c
This commit is contained in:
parent
810054ca6d
commit
6d71b970d3
|
@ -82,7 +82,7 @@ static bool hook_mem_invalid(uch handle, uc_mem_type type,
|
||||||
printf(">>> Missing memory is being WRITTEN at 0x%"PRIx64 ", data size = %u, data value = 0x%"PRIx64 "\n",
|
printf(">>> Missing memory is being WRITTEN at 0x%"PRIx64 ", data size = %u, data value = 0x%"PRIx64 "\n",
|
||||||
address, size, value);
|
address, size, value);
|
||||||
return false;
|
return false;
|
||||||
case UC_MEM_WRITE_NR:
|
case UC_MEM_WRITE_NW:
|
||||||
printf(">>> RO memory is being WRITTEN at 0x%"PRIx64 ", data size = %u, data value = 0x%"PRIx64 "\n",
|
printf(">>> RO memory is being WRITTEN at 0x%"PRIx64 ", data size = %u, data value = 0x%"PRIx64 "\n",
|
||||||
address, size, value);
|
address, size, value);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue