mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-07-15 15:42:49 +00:00
an option to disable drawing centerover
This commit is contained in:
parent
c5f9005405
commit
c11e552318
@ -4117,6 +4117,8 @@ EX cell *forwardcell() {
|
|||||||
return xc.at;
|
return xc.at;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EX bool draw_centerover = true;
|
||||||
|
|
||||||
EX void drawMarkers() {
|
EX void drawMarkers() {
|
||||||
|
|
||||||
if(!(cmode & sm::NORMAL)) return;
|
if(!(cmode & sm::NORMAL)) return;
|
||||||
@ -4207,7 +4209,7 @@ EX void drawMarkers() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CAP_QUEUE
|
#if CAP_QUEUE
|
||||||
if(centerover && !playermoved && m && !anims::any_animation() && WDIM == 2)
|
if(centerover && !playermoved && m && !anims::any_animation() && WDIM == 2 && draw_centerover)
|
||||||
queuecircleat(centerover, .70 - .06 * sintick(200),
|
queuecircleat(centerover, .70 - .06 * sintick(200),
|
||||||
darkena(int(175 + 25 * sintick(200)), 0, 0xFF));
|
darkena(int(175 + 25 * sintick(200)), 0, 0xFF));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user