Cleanup: remove unneeded CopyOutDParam version with StringID

This commit is contained in:
Rubidium
2023-06-22 18:49:32 +02:00
committed by rubidium42
parent 4654b2b0aa
commit b2edf82b69
3 changed files with 1 additions and 13 deletions

View File

@@ -187,17 +187,6 @@ void CopyOutDParam(std::vector<StringParameterBackup> &backup, size_t num)
}
}
/**
* Copy \a num string parameters from the global string parameter array to the \a backup.
* @param backup The backup to write to.
* @param num Number of string parameters to copy.
* @param string The string used to determine where raw strings are and where there are no raw strings.
*/
void CopyOutDParam(std::vector<StringParameterBackup> &backup, size_t num, StringID string)
{
CopyOutDParam(backup, num);
}
/**
* Checks whether the global string parameters have changed compared to the given backup.
* @param backup The backup to check against.