mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 14:48:21 +00:00
java: rename UC_MEM_EXE to UC_MEM_FETCH
This commit is contained in:
parent
7a5d790ade
commit
fda17cd377
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public interface UnicornConst {
|
||||||
public static final int UC_MEM_READ = 16;
|
public static final int UC_MEM_READ = 16;
|
||||||
public static final int UC_MEM_WRITE = 17;
|
public static final int UC_MEM_WRITE = 17;
|
||||||
public static final int UC_MEM_READ_WRITE = 18;
|
public static final int UC_MEM_READ_WRITE = 18;
|
||||||
public static final int UC_MEM_EXEC = 19;
|
public static final int UC_MEM_FETCH = 19;
|
||||||
public static final int UC_MEM_WRITE_PROT = 20;
|
public static final int UC_MEM_WRITE_PROT = 20;
|
||||||
public static final int UC_MEM_READ_PROT = 21;
|
public static final int UC_MEM_READ_PROT = 21;
|
||||||
public static final int UC_MEM_EXEC_PROT = 22;
|
public static final int UC_MEM_EXEC_PROT = 22;
|
||||||
|
|
Loading…
Reference in a new issue