Skip to content

Commit

Permalink
Editor: reworded a warning issued when files have been added or removed
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-mogilko committed Feb 7, 2025
1 parent ec1d4ee commit 81aa959
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/AGS.Editor/GUI/GUIController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1709,7 +1709,7 @@ public bool QueryWhetherToSaveGameBeforeContinuing(string message)
{
if ((result == DialogResult.No) && (_agsEditor.CurrentGame.FilesAddedOrRemoved))
{
result = MessageBox.Show("Files have been added, removed or renamed. If you don't save the game now, you may not be able to successfully open this game next time. Do you want to save your changes?", "Save changes?", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
result = MessageBox.Show("Files have been added, removed or renamed within the game. If you don't save the game now, the project may become inconsistent and require manual fixing upon loading it next time. Do you want to save your changes?", "Save changes?", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
}

if (result == DialogResult.Yes)
Expand Down

0 comments on commit 81aa959

Please sign in to comment.