Fix sidedef "compresion" error message typo (#973)

This commit is contained in:
Derek MacDonald 2023-10-22 02:37:49 -04:00 committed by GitHub
parent 728eea84b2
commit 7536ea0f9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -700,8 +700,8 @@ namespace CodeImp.DoomBuilder
{
// Problem! Can't save the map like this!
General.ShowErrorMessage("Unable to save the map: there are too many unique sidedefs!" + Environment.NewLine + Environment.NewLine
+ "Sidedefs before compresion: " + initialsidescount + Environment.NewLine
+ "Sidedefs after compresion: " + outputset.Sidedefs.Count
+ "Sidedefs before compression: " + initialsidescount + Environment.NewLine
+ "Sidedefs after compression: " + outputset.Sidedefs.Count
+ " (" + (outputset.Sidedefs.Count - io.MaxSidedefs) + " sidedefs above the limit)", MessageBoxButtons.OK);
General.MainWindow.DisplayStatus(oldstatus);
return false;