mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-14 08:01:38 +01:00
fix init of other colors (new was missing)
This commit is contained in:
parent
a6a421f550
commit
a7c9159b81
1 changed files with 2 additions and 1 deletions
|
@ -52,7 +52,7 @@ public class CommonPrefs {
|
|||
{
|
||||
playerColors = new int[4];
|
||||
bonusColors = new int[5];
|
||||
bonusColors[0] = 0xFFFFFFFF; // white
|
||||
bonusColors[0] = 0xF0F0F0F0; // garbage
|
||||
otherColors = new int[COLOR_LAST];
|
||||
}
|
||||
|
||||
|
@ -97,6 +97,7 @@ public class CommonPrefs {
|
|||
}
|
||||
|
||||
int idsOther[] = { R.string.key_tile_back,
|
||||
R.string.key_empty,
|
||||
R.string.key_focus,
|
||||
};
|
||||
for ( int ii = 0; ii < idsOther.length; ++ii ) {
|
||||
|
|
Loading…
Reference in a new issue