From ffc19ee25551f6ec807831805ee22d7b038a08fa Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Wed, 26 Sep 2018 20:47:34 +0300 Subject: [PATCH] SDL_string.c: added comments to three SDL_FormatInfo members. --- src/stdlib/SDL_string.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stdlib/SDL_string.c b/src/stdlib/SDL_string.c index 047b32039..1f55b51bf 100644 --- a/src/stdlib/SDL_string.c +++ b/src/stdlib/SDL_string.c @@ -1360,9 +1360,9 @@ typedef enum typedef struct { - SDL_bool left_justify; - SDL_bool force_sign; - SDL_bool force_type; + SDL_bool left_justify; /* for now: ignored. */ + SDL_bool force_sign; /* for now: used only by float printer, ignored otherwise. */ + SDL_bool force_type; /* for now: used only by float printer, ignored otherwise. */ SDL_bool pad_zeroes; SDL_letter_case force_case; int width;