Skip to content

Commit

Permalink
Merge pull request #441 from olicht/patch-1
Browse files Browse the repository at this point in the history
Update dominosa.c: fix #426
  • Loading branch information
chrisboyle committed Mar 24, 2019
2 parents 25a7cfe + 5ef8dc0 commit 702aede
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/main/jni/dominosa.c
Original file line number Diff line number Diff line change
Expand Up @@ -1423,9 +1423,9 @@ static float *game_colours(frontend *fe, int *ncolours)
ret[COL_HIGHLIGHT_1 * 3 + 1] = 0.20;
ret[COL_HIGHLIGHT_1 * 3 + 2] = 0.20;

ret[COL_HIGHLIGHT_2 * 3 + 0] = 0.30;
ret[COL_HIGHLIGHT_2 * 3 + 1] = 0.85;
ret[COL_HIGHLIGHT_2 * 3 + 2] = 0.20;
ret[COL_HIGHLIGHT_2 * 3 + 0] = 0.20;
ret[COL_HIGHLIGHT_2 * 3 + 1] = 0.65;
ret[COL_HIGHLIGHT_2 * 3 + 2] = 0.12;

*ncolours = NCOLOURS;
return ret;
Expand Down

0 comments on commit 702aede

Please sign in to comment.