File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -263,8 +263,10 @@ inline bool Parser<double>::TryParse(const char* pValue, OutType* outValue)
263263 errno = 0 ;
264264 char * end;
265265
266- // Nov 23, 2025 - Starkku: strtod() + cast result to float produces results
267- // more similar to game's CRT functions than using sscanf_s.
266+ // Nov 23, 2025 - Starkku, Kerbiter: strtod() + cast result to float produces
267+ // results more similar to game's CRT functions than using sscanf_s. For some
268+ // reason CnC-DDraw in DirectX mode causes game's CRT function usage here to change
269+ // for some players, causing stably reproducible desyncs when CMIN appears, f.ex.
268270 double value = strtod (pValue, &end);
269271
270272 if (pValue == end || errno == ERANGE)
You can’t perform that action at this time.
0 commit comments