1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00

Oops - remove ugly debugging test pattern in cursor

[originally from svn r652]
This commit is contained in:
Simon Tatham 2000-09-29 12:04:27 +00:00
parent a3df90a2e3
commit 138b090f3e

View File

@ -391,7 +391,6 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) {
char *bits;
int size = (font_width+15)/16 * 2 * font_height;
bits = calloc(size, 1);
memset(bits, 0x55, size);
caretbm = CreateBitmap(font_width, font_height, 1, 1, bits);
free(bits);
}