Fix default value for idle time multiplier in GameOptions so the dropdown actually has something selected.

This commit is contained in:
Andy Janata 2018-02-25 22:12:17 -08:00
parent b80f12e8d1
commit a94ba4a31c
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/**
* Copyright (c) 2012, Andy Janata
* Copyright (c) 2012-2018, Andy Janata
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted
@ -59,7 +59,7 @@ public class GameOptions {
public int scoreGoal = DEFAULT_SCORE_LIMIT;
public final Set<Integer> cardSetIds = new HashSet<Integer>();
public String password = "";
public String timerMultiplier = "1.0x";
public String timerMultiplier = "1x";
/**
* Update the options in-place (so that the Game doesn't need more locks).