diff options
| author | Simon Tatham <anakin@pobox.com> | 2005-07-17 08:44:18 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2005-07-17 08:44:18 +0000 |
| commit | e12017b291b621d33708750018412c436e82d950 (patch) | |
| tree | 0ed5826aedd0793b4324b8f7a54a6a95bbc6847e /misc.c | |
| parent | 931a7ca45f4c247e974509922b879cc631a84ec9 (diff) | |
| download | puzzles-e12017b291b621d33708750018412c436e82d950.zip puzzles-e12017b291b621d33708750018412c436e82d950.tar.gz puzzles-e12017b291b621d33708750018412c436e82d950.tar.bz2 puzzles-e12017b291b621d33708750018412c436e82d950.tar.xz | |
Another game from James H: `Black Box'.
[originally from svn r6100]
Diffstat (limited to 'misc.c')
| -rw-r--r-- | misc.c | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -147,8 +147,6 @@ unsigned char *hex2bin(const char *in, int outlen) unsigned char *ret = snewn(outlen, unsigned char); int i; - debug(("hex2bin: in '%s'", in)); - memset(ret, 0, outlen*sizeof(unsigned char)); for (i = 0; i < outlen*2; i++) { int c = in[i]; @@ -213,4 +211,14 @@ void shuffle(void *array, int nelts, int eltsize, random_state *rs) sfree(tmp); } +void draw_rect_outline(frontend *fe, int x, int y, int w, int h, int colour) +{ + int x0 = x, x1 = x+w-1, y0 = y, y1 = y+h-1; + + draw_line(fe, x0, y0, x0, y1, colour); + draw_line(fe, x0, y1, x1, y1, colour); + draw_line(fe, x1, y1, x1, y0, colour); + draw_line(fe, x1, y0, x0, y0, colour); +} + /* vim: set shiftwidth=4 tabstop=8: */ |