: gameFactory.getGame(defaultGameId);
// If no default game is set then ask for it
if (game == null)
{
final SelectGameDialog dialog = SelectGameDialog.getInstance();
if (dialog.open() != Result.OK) return;
game = dialog.getGame();
if (dialog.isRemember()) config.setDefaultGame(game.getId());
}
createComplexTab(new ComplexEditor(new Complex(game)));
}