Remove spaces from internal file

This commit is contained in:
Miloslav Ciz 2025-06-11 18:32:45 +02:00
parent 41f9d3f886
commit f0d8521e90
5 changed files with 567 additions and 568 deletions

3
game.h
View file

@ -1353,7 +1353,8 @@ void LCR_gameSaveReplay(void)
LCR_gameTimeToStr(LCR_timeTicksToMS(LCR_game.runTime),str);
for (int i = 0; i < LCR_MAP_NAME_MAX_LEN; ++i)
for (int i = (str[0] == '0' && str[1] == '0' ? 3 : 0);
i < LCR_MAP_NAME_MAX_LEN; ++i)
if (str[i])
_LCR_gameDataCharWrite(str[i]);
else