| 171 | } |
| 172 | |
| 173 | static bool printNative() |
| 174 | { |
| 175 | // Blood originally uses its tiny font for the notify display which does not play along well with localization because it is too small, so for non-English switch to the text font. |
| 176 | if (con_notify_advanced) return false; |
| 177 | if (!isBlood()) return true; |
| 178 | auto p = GStrings.CheckString("REQUIRED_CHARACTERS"); |
| 179 | if (p && *p) return false; |
| 180 | return true; |
| 181 | } |
| 182 | |
| 183 | void FNotifyBuffer::Draw() |
| 184 | { |
no test coverage detected