X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/8c4ea6f0ea2024075e110bef9a6ad3037cbf9b1d..56c1f50e2a139c5f63723f606c9cd66038f52f64:/puzzles.h diff --git a/puzzles.h b/puzzles.h index 3785772..9b69d1b 100644 --- a/puzzles.h +++ b/puzzles.h @@ -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);