formatting bit: display_self()

This commit is contained in:
PatR
2021-09-21 01:02:52 -07:00
parent f034f8ae86
commit f0204d1c26
+10 -11
View File
@@ -234,17 +234,16 @@
? ridden_mon_to_glyph(u.usteed, rn2_on_display_rng) \ ? ridden_mon_to_glyph(u.usteed, rn2_on_display_rng) \
: (otherwise_self)) : (otherwise_self))
#define display_self() \ #define display_self() \
show_glyph(u.ux, u.uy, \ show_glyph(u.ux, u.uy, maybe_display_usteed( \
maybe_display_usteed( \ ((int) U_AP_TYPE == M_AP_NOTHING) \
((int) U_AP_TYPE == M_AP_NOTHING) ? hero_glyph \ ? hero_glyph \
: ((int) U_AP_TYPE == M_AP_FURNITURE) \ : ((int) U_AP_TYPE == M_AP_FURNITURE) \
? cmap_to_glyph((int) g.youmonst.mappearance) \ ? cmap_to_glyph((int) g.youmonst.mappearance) \
: ((int) U_AP_TYPE == M_AP_OBJECT) \ : ((int) U_AP_TYPE == M_AP_OBJECT) \
? objnum_to_glyph( \ ? objnum_to_glyph((int) g.youmonst.mappearance) \
(int) g.youmonst.mappearance) /* else U_AP_TYPE == \ /* else U_AP_TYPE == M_AP_MONSTER */ \
M_AP_MONSTER */ \ : monnum_to_glyph((int) g.youmonst.mappearance, Ugender)))
: monnum_to_glyph((int) g.youmonst.mappearance, (int) Ugender)))
/* /*
* NetHack glyphs * NetHack glyphs