diff options
author | jsorg71 <jsorg71> | 2007-09-23 07:53:33 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2007-09-23 07:53:33 +0000 |
commit | 8e6c63cee77fbe89feffecb9d7de5e70a8da7f8c (patch) | |
tree | f95bd2a7b43ed147cdd73b0726c9e714ae69c5b2 /fontdump | |
parent | 065c9b6a244656a36f8f66ae8144fdd84b13f6b9 (diff) | |
download | xrdp-proprietary-8e6c63cee77fbe89feffecb9d7de5e70a8da7f8c.tar.gz xrdp-proprietary-8e6c63cee77fbe89feffecb9d7de5e70a8da7f8c.zip |
expand chars to 4096
Diffstat (limited to 'fontdump')
-rwxr-xr-x | fontdump/fontdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fontdump/fontdump.c b/fontdump/fontdump.c index 8062b395..bfc2184d 100755 --- a/fontdump/fontdump.c +++ b/fontdump/fontdump.c @@ -149,7 +149,7 @@ font_dump(void) g_file_write(fd, &zero1, 1); index1++; } - for (x1 = 32; x1 < 1024; x1++) + for (x1 = 32; x1 < 4096; x1++) { check_messages(); dc = GetWindowDC(g_wnd); |