CRAB: Fix StringPool::fGet()

This commit is contained in:
hax0kartik 2023-08-10 11:43:19 +05:30 committed by Eugene Sandulenko
parent 2bca19e367
commit 3e5e3987c5

View File

@ -138,7 +138,7 @@ public:
FloatString fs;
fs._val = num;
//fs.str = NumberToString<float>(num);
fs._str = numberToString<float>(num);
poolF.push_back(fs);
auto ret = poolF.back();