Fix: Remove various dead or unnecessary assignments

This commit is contained in:
Charles Pigott
2018-10-14 18:17:09 +01:00
committed by frosch
parent f5b1115039
commit e0c0394e37
7 changed files with 8 additions and 15 deletions

View File

@@ -265,7 +265,7 @@ static SavegameType DetermineOldSavegameType(FILE *f, char *title, const char *l
case SGT_TTD: title = strecpy(title, "(TTD) ", last); break;
default: title = strecpy(title, "(broken) ", last); break;
}
title = strecpy(title, temp, last);
strecpy(title, temp, last);
}
return type;