(int cx, int cy, String str)
| 336 | } |
| 337 | |
| 338 | public static void Print(int cx, int cy, String str) { |
| 339 | //while (*str) |
| 340 | for (int n = 0; n < str.length(); n++) { |
| 341 | DrawCharacter(cx, cy, str.charAt(n) + 128); |
| 342 | //str++; |
| 343 | cx += 8; |
| 344 | } |
| 345 | } |
| 346 | |
| 347 | public static void PrintWhite(int cx, int cy, String str) { |
| 348 | for (int n = 0; n < str.length(); n++) { |
no test coverage detected