save replays in a less generic file extension

This commit is contained in:
Matthias Mailänder
2014-12-28 10:04:48 +01:00
parent 417b499472
commit 1b5928879c
4 changed files with 4 additions and 4 deletions

View File

@@ -71,7 +71,7 @@ namespace OpenRA.FileFormats
public void RenameFile(string newFilenameWithoutExtension)
{
var newPath = Path.Combine(Path.GetDirectoryName(FilePath), newFilenameWithoutExtension) + ".rep";
var newPath = Path.Combine(Path.GetDirectoryName(FilePath), newFilenameWithoutExtension) + ".orarep";
File.Move(FilePath, newPath);
FilePath = newPath;
}