(int cx, int cy, int num)
| 331 | * and will be centered on higher res screens. ================ |
| 332 | */ |
| 333 | private static void DrawCharacter(int cx, int cy, int num) { |
| 334 | ClientGlobals.re.DrawChar(cx + ((ClientGlobals.viddef.getWidth() - 320) >> 1), cy |
| 335 | + ((ClientGlobals.viddef.getHeight() - 240) >> 1), num); |
| 336 | } |
| 337 | |
| 338 | public static void Print(int cx, int cy, String str) { |
| 339 | //while (*str) |
no test coverage detected