ref: 941dec2c7c5674cc022c4a29bca0c7ccfbd41d69
parent: d1c7cd53df828fb9993712791d59e5f54a72353b
author: Clownacy <Clownacy@users.noreply.github.com>
date: Thu Jun 27 13:50:19 EDT 2019
Add a bugfix for unsafe usage of sprintf Thanks, Gabe
--- a/src/TextScr.cpp
+++ b/src/TextScr.cpp
@@ -1310,7 +1310,11 @@
//Print text
PutText2(0, 0, str, RGB(0xFF, 0xFF, 0xFE), (Surface_Ids)(gTS.line % 4 + SURFACE_ID_TEXT_LINE1));
- sprintf(&text[gTS.line % 4 * 0x40], str);
+ #ifdef FIX_BUGS
+ strcpy(&text[gTS.line % 4 * 0x40], str);
+ #else
+ sprintf(&text[gTS.line % 4 * 0x40], str); // No point to using an sprintf here, and it makes Clang mad
+ #endif
//Check if should move to next line (prevent a memory overflow, come on guys, this isn't a leftover of pixel trying to make text wrapping)
gTS.p_read += y;