This commit is contained in:
恍兮惚兮 2024-12-11 21:40:40 +08:00
parent 7a95d5ec31
commit c29a326ddd
4 changed files with 4 additions and 0 deletions

View File

@ -190,6 +190,7 @@ namespace
hpinternal.address = ret;
hpinternal.emu_addr = em_address; // 用于生成hcode
hpinternal.type = USING_STRING | NO_CONTEXT | BREAK_POINT | op.type;
hpinternal.codepage = 932;
hpinternal.text_fun = op.hookfunc;
hpinternal.filter_fun = op.filterfun;
hpinternal.offset = op.offset;

View File

@ -120,6 +120,7 @@ bool vita3k::attach_function()
hpinternal.type = NO_CONTEXT | BREAK_POINT | op.type;
if (!(op.type & USING_CHAR))
hpinternal.type |= USING_STRING;
hpinternal.codepage = 932;
hpinternal.text_fun = op.hookfunc;
hpinternal.filter_fun = op.filterfun;
hpinternal.offset = op.offset;

View File

@ -202,6 +202,7 @@ bool yuzu::attach_function()
hpinternal.type = NO_CONTEXT | BREAK_POINT | op.type;
if (!(op.type & USING_CHAR))
hpinternal.type |= USING_STRING;
hpinternal.codepage = 932;
hpinternal.text_fun = op.hookfunc;
hpinternal.filter_fun = op.filterfun;
hpinternal.offset = op.offset;

View File

@ -347,6 +347,7 @@ namespace ppsspp
hpinternal.address = ret;
hpinternal.emu_addr = em_address; // 用于生成hcode
hpinternal.type = USING_STRING | NO_CONTEXT | BREAK_POINT | op.type;
hpinternal.codepage = 932;
hpinternal.text_fun = op.hookfunc;
hpinternal.filter_fun = op.filterfun;
hpinternal.offset = op.offset;