aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llrender/text_out.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llrender/text_out.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llrender/text_out.cpp b/linden/indra/llrender/text_out.cpp
index f4892b2..572ed03 100644
--- a/linden/indra/llrender/text_out.cpp
+++ b/linden/indra/llrender/text_out.cpp
@@ -52,7 +52,7 @@ typedef struct s_text_line
52// const LLFontGL *font; 52// const LLFontGL *font;
53// U8 color[3]; 53// U8 color[3];
54// U8 bg_color[3]; 54// U8 bg_color[3];
55 char line[MAX_TEXT_LINE_LENGTH]; 55 char line[MAX_TEXT_LINE_LENGTH]; /* Flawfinder: ignore */
56 S32 x, y; 56 S32 x, y;
57// ETextModifiers tm; 57// ETextModifiers tm;
58// ETextColorModifiers fcm; 58// ETextColorModifiers fcm;
@@ -84,7 +84,7 @@ void add_text(S32 x, S32 y, char *text) // , ETextModifiers tm, ETextColorModifi
84 84
85 TEXT_LINE *linep = &gTextLine[gNumTextLines++]; 85 TEXT_LINE *linep = &gTextLine[gNumTextLines++];
86 86
87 strcpy(linep->line, text); 87 strcpy(linep->line, text); /* Flawfinder: ignore */
88 linep->x = x; 88 linep->x = x;
89 linep->y = y; 89 linep->y = y;
90} 90}