(int x, int y, String s)
| 275 | } |
| 276 | |
| 277 | static void DrawAltString(int x, int y, String s) { |
| 278 | for (int i = 0; i < s.length(); i++) { |
| 279 | ClientGlobals.re.DrawChar(x, y, s.charAt(i) ^ 0x80); |
| 280 | x += 8; |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | /* |
| 285 | * =============== Con_Linefeed =============== |
no test coverage detected