removed duplicate constant
authorHolger Schemel <holger.schemel@virtion.de>
Sun, 6 Oct 2024 09:22:07 +0000 (11:22 +0200)
committerHolger Schemel <holger.schemel@virtion.de>
Sun, 6 Oct 2024 09:22:07 +0000 (11:22 +0200)
src/libgame/text.c

index 1db4848f0170a0964414be29d4b64c784d13a3b3..b142610878255c54fce2e6dd7e2956fe0f6bba3e 100644 (file)
@@ -363,8 +363,6 @@ void DrawTextExt(DrawBuffer *dst_bitmap, int dst_x, int dst_y, char *text,
 // text buffer drawing functions
 // ============================================================================
 
-#define MAX_LINES_FROM_FILE            1024
-
 char *GetTextBufferFromFile(char *filename, int max_lines)
 {
   File *file;
@@ -764,7 +762,7 @@ int DrawTextFile(int x, int y, char *filename, int font_nr,
                 int line_spacing, int mask_mode, boolean autowrap,
                 boolean centered, boolean parse_comments)
 {
-  char *text_buffer = GetTextBufferFromFile(filename, MAX_LINES_FROM_FILE);
+  char *text_buffer = GetTextBufferFromFile(filename, MAX_OUTPUT_LINESIZE);
   int num_lines_printed = DrawTextBuffer(x, y, text_buffer, font_nr,
                                         line_length, cut_length, max_lines,
                                         line_spacing, mask_mode, autowrap,