summaryrefslogtreecommitdiff
path: root/src/d/d_error_msg.cpp
diff options
context:
space:
mode:
authorMax Roncace <me@caseif.net>2025-08-24 13:56:20 -0400
committerGitHub <noreply@github.com>2025-08-24 20:56:20 +0300
commit46a11f2cd71b7f79e310bcc7510e1ba9dda7d114 (patch)
treecc21efe5a91f50bfe3839bbc136eacdc378e5a34 /src/d/d_error_msg.cpp
parent0abe859c286d76ddb40e110ce89e737f44d4328f (diff)
Several more TUs matching (#2601)
Diffstat (limited to 'src/d/d_error_msg.cpp')
-rw-r--r--src/d/d_error_msg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/d_error_msg.cpp b/src/d/d_error_msg.cpp
index af55ac1429..3507fd4a4b 100644
--- a/src/d/d_error_msg.cpp
+++ b/src/d/d_error_msg.cpp
@@ -47,7 +47,7 @@ static void messageSet(u32 status, bool i_drawBg) {
BMG_INF1* inf1 = (BMG_INF1*)&msg_data[0x20];
const char* msg_p = (const char*)((u8*)inf1->getNext() + sizeof(JUTDataBlockHeader) + inf1->entries[status]);
- JUT_ASSERT(102, std::strlen(msg_p)-1 < 512);
+ JUT_ASSERT(102, strlen(msg_p)-1 < 512);
J2DTextBox tpane('TEXT1', JGeometry::TBox2<f32>(0.0f, 0.0f, 608.0f, 200.0f), (ResFONT*)font_data, msg_p, 512, HBIND_CENTER, VBIND_CENTER);
J2DTextBox spane('TEXT2', JGeometry::TBox2<f32>(0.0f, 0.0f, 608.0f, 200.0f), (ResFONT*)font_data, msg_p, 512, HBIND_CENTER, VBIND_CENTER);