mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-22 08:25:45 -07:00
Work around non-compliant sprintf().
Rockbox's sprintf() lacks the ability to left-justify a string. Fixed by adding a copy_left_justfied() function to misc.c. This is a new version of this commit, as the previous version broke saving!
This commit is contained in:

committed by
Simon Tatham

parent
2d33375027
commit
cefb84c2db
@ -376,6 +376,11 @@ void pos2c(int w, int h, int pos, int *cx, int *cy);
|
||||
void draw_text_outline(drawing *dr, int x, int y, int fonttype,
|
||||
int fontsize, int align,
|
||||
int text_colour, int outline_colour, char *text);
|
||||
|
||||
/* Copies text left-justified with spaces. Length of string must be
|
||||
* less than buffer size. */
|
||||
void copy_left_justified(char *buf, size_t sz, const char *str);
|
||||
|
||||
/*
|
||||
* dsf.c
|
||||
*/
|
||||
|
Reference in New Issue
Block a user