summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-10-03 21:02:08 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-10-03 21:02:08 +0100
commit4c6a176d39d47b79ee1c2a32116623a27446229f (patch)
tree1abfa03554dac24b440cb4ee14a142b44d876738 /windows
parent138d8c4677d80882df09df0eeda2f77bae963d5f (diff)
downloadnetsurf-4c6a176d39d47b79ee1c2a32116623a27446229f.tar.gz
netsurf-4c6a176d39d47b79ee1c2a32116623a27446229f.tar.bz2
Remove BITMAP_PERSISTENT flag.
Diffstat (limited to 'windows')
-rw-r--r--windows/thumbnail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/thumbnail.c b/windows/thumbnail.c
index e87745bae..c4ef63c43 100644
--- a/windows/thumbnail.c
+++ b/windows/thumbnail.c
@@ -68,7 +68,7 @@ thumbnail_create(hlcache_handle *content,
}
/* create a full size bitmap and plot into it */
- fsbitmap = bitmap_create(width, height, BITMAP_NEW | BITMAP_CLEAR_MEMORY | BITMAP_OPAQUE | BITMAP_PERSISTENT);
+ fsbitmap = bitmap_create(width, height, BITMAP_NEW | BITMAP_CLEAR_MEMORY | BITMAP_OPAQUE);
SelectObject(bufferdc, fsbitmap->windib);