mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-27 15:44:12 +08:00
.
This commit is contained in:
parent
7a95d5ec31
commit
c29a326ddd
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user