Skip to content

Commit

Permalink
Renamed
Browse files Browse the repository at this point in the history
  • Loading branch information
elpatron68 committed Oct 23, 2022
1 parent 44fb2f8 commit 07b5cda
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions SnowRunner-Tool/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -857,76 +857,76 @@ private void MnShowLogFiles_Click(object sender, RoutedEventArgs e)
private void MnCopySaveGame1To2_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(1, 2, SRProfile, Platform);
CopyComplete(1, 2, result);
CopyFinishMessage(1, 2, result);
}

private void MnCopySaveGame1To3_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(1, 3, SRProfile, Platform);
CopyComplete(1, 3, result);
CopyFinishMessage(1, 3, result);
}

private void MnCopySaveGame1To4_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(1, 4, SRProfile, Platform);
CopyComplete(1, 4, result);
CopyFinishMessage(1, 4, result);
}

private void MnCopySaveGame2To1_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(2, 1, SRProfile, Platform);
CopyComplete(2, 1, result);
CopyFinishMessage(2, 1, result);
}

private void MnCopySaveGame2To3_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(2, 3, SRProfile, Platform);
CopyComplete(2, 3, result);
CopyFinishMessage(2, 3, result);
}

private void MnCopySaveGame2To4_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(2, 4, SRProfile, Platform);
CopyComplete(2, 4, result);
CopyFinishMessage(2, 4, result);
}

private void MnCopySaveGame3To1_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(3, 1, SRProfile, Platform);
CopyComplete(3, 1, result);
CopyFinishMessage(3, 1, result);
}

private void MnCopySaveGame3To2_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(3, 2, SRProfile, Platform);
CopyComplete(3, 2, result);
CopyFinishMessage(3, 2, result);
}

private void MnCopySaveGame3To4_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(3, 4, SRProfile, Platform);
CopyComplete(3, 4, result);
CopyFinishMessage(3, 4, result);
}

private void MnCopySaveGame4To1_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(4, 1, SRProfile, Platform);
CopyComplete(4, 1, result);
CopyFinishMessage(4, 1, result);
}

private void MnCopySaveGame4To2_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(4, 2, SRProfile, Platform);
CopyComplete(4, 2, result);
CopyFinishMessage(4, 2, result);
}

private void MnCopySaveGame4To3_Click(object sender, RoutedEventArgs e)
{
bool result = CheatGame.CopySlotToOtherSlot(4, 3, SRProfile, Platform);
CopyComplete(4, 3, result);
CopyFinishMessage(4, 3, result);
}

private void CopyComplete(int slot1, int slot2, bool result)
private void CopyFinishMessage(int slot1, int slot2, bool result)
{
_logger.Information(string.Format("Save game copy: Source: {0}, destination: {1}, result: {2}",
slot1.ToString(), slot2.ToString(), result.ToString()));
Expand Down

0 comments on commit 07b5cda

Please sign in to comment.