freemyipod r657 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r656‎ | r657 | r658 >
Date:18:26, 24 March 2011
Author:theseven
Status:new
Tags:
Comment:
emCORE: Const correctness
Modified paths:
  • /emcore/trunk/drawing.h (modified) (history)

Diff [purge]

Index: emcore/trunk/drawing.h
@@ -36,7 +36,7 @@
3737 void renderchar(void* buffer, int x, int y, int stride,
3838 uint32_t fgcolor, uint32_t bgcolor, char c);
3939 void rendertext(void* buffer, int x, int y, int stride,
40 - uint32_t fgcolor, uint32_t bgcolor, char* str);
 40+ uint32_t fgcolor, uint32_t bgcolor, const char* str);
4141 int get_font_width(void);
4242 int get_font_height(void);
4343