mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-04-26 10:41:22 +00:00
pointing in 2D modes
This commit is contained in:
@@ -4243,7 +4243,12 @@ EX void drawMarkers() {
|
||||
|
||||
#if CAP_QUEUE
|
||||
if(lmouseover && vid.drawmousecircle && ok && DEFAULTCONTROL && MOBON && WDIM == 2) {
|
||||
queuecircleat(lmouseover, .8, darkena(lmouseover->cpdist > 1 ? 0x00FFFF : 0xFF0000, 0, 0xFF));
|
||||
cell *at = lmouseover;
|
||||
#if CAP_VR
|
||||
if(vrhr::state == 2 && vrhr::forward_cell)
|
||||
at = vrhr::forward_cell;
|
||||
#endif
|
||||
queuecircleat(at, .8, darkena(lmouseover->cpdist > 1 ? 0x00FFFF : 0xFF0000, 0, 0xFF));
|
||||
}
|
||||
|
||||
if(global_pushto && vid.drawmousecircle && ok && DEFAULTCONTROL && MOBON && WDIM == 2) {
|
||||
|
||||
Reference in New Issue
Block a user