From c99e399282b8e19748ef9fa5d703c3fc32783a2d Mon Sep 17 00:00:00 2001 From: David Gow Date: Sun, 6 Jul 2014 17:50:49 +0800 Subject: [PATCH] Fix a warning/compile error. --- src/screen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screen.cpp b/src/screen.cpp index dc59de9..fdda252 100644 --- a/src/screen.cpp +++ b/src/screen.cpp @@ -378,7 +378,7 @@ void Screen::DebugFontInit(const char *name, float font_size) size_t font_file_size = ftell(font_file); fseek(font_file, 0, SEEK_SET); unsigned char *font_file_data = (unsigned char*)malloc(font_file_size); - fread(font_file_data, 1, font_file_size, font_file); + SDL_assert(fread(font_file_data, 1, font_file_size, font_file) == font_file_size); fclose(font_file); stbtt_BakeFontBitmap(font_file_data,0, font_size, font_atlas_data,1024,1024, 32,96, m_debug_font_rects); free(font_file_data); -- 2.20.1