diff options
| author | Simon Tatham <anakin@pobox.com> | 2007-05-07 17:50:14 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2007-05-07 17:50:14 +0000 |
| commit | ab80d0b7fdd07bfc9037a44df97d862ce5e986ea (patch) | |
| tree | b7d9b1a23239ed73ce9f82d26de83d991361d302 /puzzles.h | |
| parent | 7fce4f57c201fe6a60ab25ccb62f089c711e97cc (diff) | |
| download | puzzles-ab80d0b7fdd07bfc9037a44df97d862ce5e986ea.zip puzzles-ab80d0b7fdd07bfc9037a44df97d862ce5e986ea.tar.gz puzzles-ab80d0b7fdd07bfc9037a44df97d862ce5e986ea.tar.bz2 puzzles-ab80d0b7fdd07bfc9037a44df97d862ce5e986ea.tar.xz | |
Add a new misc.c function needed by Slide's colour setup.
[originally from svn r7552]
Diffstat (limited to 'puzzles.h')
| -rw-r--r-- | puzzles.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -280,6 +280,10 @@ unsigned char *hex2bin(const char *in, int outlen); * and auto-generates highlight and lowlight colours too. */ void game_mkhighlight(frontend *fe, float *ret, int background, int highlight, int lowlight); +/* As above, but starts from a provided background colour rather + * than the frontend default. */ +void game_mkhighlight_specific(frontend *fe, float *ret, + int background, int highlight, int lowlight); /* Randomly shuffles an array of items. */ void shuffle(void *array, int nelts, int eltsize, random_state *rs); |