(int x, int y, String string)
| 4530 | } |
| 4531 | |
| 4532 | private static void Menu_DrawStringR2LDark(int x, int y, String string) { |
| 4533 | int i; |
| 4534 | |
| 4535 | int l = string.length(); |
| 4536 | for (i = 0; i < l; i++) { |
| 4537 | ClientGlobals.re.DrawChar((x - i * 8), y, string.charAt(l - i - 1) + 128); |
| 4538 | } |
| 4539 | } |
| 4540 | |
| 4541 | private static menucommon_s Menu_ItemAtCursor(menuframework_s m) { |
| 4542 | if (m.cursor < 0 || m.cursor >= m.nitems) |
no test coverage detected