summaryrefslogtreecommitdiff
path: root/firmware/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/font.c')
-rw-r--r--firmware/font.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/font.c b/firmware/font.c
index 03e18919da..465cec269a 100644
--- a/firmware/font.c
+++ b/firmware/font.c
@@ -522,9 +522,11 @@ void glyph_cache_save(void)
522{ 522{
523 523
524 if (fnt_file >= 0) { 524 if (fnt_file >= 0) {
525 525#ifdef WPSEDITOR
526 glyph_file = open(GLYPH_CACHE_FILE, O_WRONLY|O_CREAT|O_TRUNC);
527#else
526 glyph_file = creat(GLYPH_CACHE_FILE); 528 glyph_file = creat(GLYPH_CACHE_FILE);
527 529#endif
528 if (glyph_file < 0) return; 530 if (glyph_file < 0) return;
529 531
530 lru_traverse(&font_cache_ui._lru, glyph_file_write); 532 lru_traverse(&font_cache_ui._lru, glyph_file_write);