uberyoji
uberyoji
I have the same issue once in a while... it is very annoying. To get out of that state, I usually close the editor and commit using Git Desktop... I...
This is a known issue. I am not sure how to fix it.
Are you using the official nes core?
Can I have a snapshot of of the files on your sd in games/NES? The proper naming should be this: boot0.rom = FDS BIOS file. Will be used for any...
I think I have a better understanding now. ctx->hover_root is not set on mousedown and the mu_mouse_over called from mu_update_control fails because in_hover_root returns false. Not sure how to fix...
Ok I think I found the issue. The problem lies with ctx->last_hover_root. Since it is null at the beginning, the first move and click will be lost. This never happens...
Got the fix! Touchscreen now works perfectly. In **microui.c** changed line 654: `if (mouseover /*&& !ctx->mouse_down*/) { ctx->hover = id; }` In **microui.c** added a new line at 1042: `if(...