From 49a22f1c8700b0363b0b391f89802b863b1d4f9d Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Tue, 18 Feb 2025 08:05:46 -0800 Subject: [PATCH] 32-bit fix --- IDEHelper/Tests/src/Params.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDEHelper/Tests/src/Params.bf b/IDEHelper/Tests/src/Params.bf index 0725dfc3..d0ba61c6 100644 --- a/IDEHelper/Tests/src/Params.bf +++ b/IDEHelper/Tests/src/Params.bf @@ -21,7 +21,7 @@ class Params { if (constType.ValueType == typeof(String)) { - format = String.GetById(constType.ValueData); + format = String.GetById((.)constType.ValueData); } }