(int index, FScreen lastMatch)
| 327 | } |
| 328 | |
| 329 | public static void openHomeScreen(int index, FScreen lastMatch) { |
| 330 | openScreen(HomeScreen.instance); |
| 331 | HomeScreen.instance.openMenu(index); |
| 332 | if (lastMatch != null) { |
| 333 | try { |
| 334 | Dscreens.remove(lastMatch); |
| 335 | } catch (Exception e) { |
| 336 | e.printStackTrace(); |
| 337 | } |
| 338 | } |
| 339 | //check |
| 340 | /*for (FScreen fScreen : Dscreens) |
| 341 | System.out.println(fScreen.toString());*/ |
| 342 | } |
| 343 | |
| 344 | public static void openHomeDefault() { |
| 345 | //default to English only if CJK is missing |
no test coverage detected