mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-01 18:27:55 +00:00
XLAT refactor continued
This commit is contained in:
@@ -56,7 +56,7 @@ EX string index_pointer(void *v) {
|
||||
}
|
||||
|
||||
#if HDR
|
||||
inline string ONOFF(bool b) { return XLAT(b ? "ON" : "OFF"); }
|
||||
inline string ONOFF(bool b) { return b ? XLAT("ON") : XLAT("OFF"); }
|
||||
|
||||
struct hstream {
|
||||
virtual void write_char(char c) = 0;
|
||||
|
Reference in New Issue
Block a user