Diable Broken Touchscreen-Specific Block Outline Behavior
This commit is contained in:
parent
ce168c1c16
commit
0c82db4116
@ -87,4 +87,9 @@ void init_touch() {
|
|||||||
int block_outlines = feature_has("Show Block Outlines", server_disabled);
|
int block_outlines = feature_has("Show Block Outlines", server_disabled);
|
||||||
unsigned char outline_patch[4] = {(unsigned char) (block_outlines ? !touch_gui : touch_gui), 0x00, 0x50, 0xe3}; // "cmp r0, #0x1" or "cmp r0, #0x0"
|
unsigned char outline_patch[4] = {(unsigned char) (block_outlines ? !touch_gui : touch_gui), 0x00, 0x50, 0xe3}; // "cmp r0, #0x1" or "cmp r0, #0x0"
|
||||||
patch((void *) 0x4a210, outline_patch);
|
patch((void *) 0x4a210, outline_patch);
|
||||||
|
if (block_outlines) {
|
||||||
|
// Diable Broken Touchscreen-Specific Block Outline Behavior
|
||||||
|
unsigned char block_highlight_patch[4] = {0x03, 0x00, 0x53, 0xe1}; // "cmp r3, r3"
|
||||||
|
patch((void *) 0x494b4, block_highlight_patch);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user