Added the two remaining checks regarding the backup save feature

This commit is contained in:
CaptainSegis 2017-07-26 22:47:04 -05:00
parent fe62e07e4c
commit 5c66805ace
2 changed files with 2 additions and 2 deletions

View File

@ -907,7 +907,7 @@ Public Class MainMenuScreen
' 3. Apply Extra Fixes. ' 3. Apply Extra Fixes.
' Enable Backup Save functionality. ' Enable Backup Save functionality.
If (Core.GameOptions.Extras.Contains("Backup Save")) Then If (Core.GameOptions.Extras.Contains("Backup Save Feature")) Then
' Make a copy of last known good gamejolt save! ' Make a copy of last known good gamejolt save!
Dim timestamp As String = Date.Now.ToString("yyyy-MM-dd_HH.mm.ss") Dim timestamp As String = Date.Now.ToString("yyyy-MM-dd_HH.mm.ss")

View File

@ -33,7 +33,7 @@
If saveSessionFailed = True Then If saveSessionFailed = True Then
.DrawString(FontManager.InGameFont, "Saving failed!", New Vector2(188, 186), Color.Red) .DrawString(FontManager.InGameFont, "Saving failed!", New Vector2(188, 186), Color.Red)
If Core.GameOptions.Extras.Contains("Backup Save") Then If Core.GameOptions.Extras.Contains("Backup Save Feature") Then
.DrawString(FontManager.MiniFont, "Press Dismiss to close this screen and try to save" & vbNewLine & .DrawString(FontManager.MiniFont, "Press Dismiss to close this screen and try to save" & vbNewLine &
"again in order to prevent data corruption." & vbNewLine & vbNewLine & "again in order to prevent data corruption." & vbNewLine & vbNewLine &
"We have backup your save in the event of gamejolt API being down." & vbNewLine & "We have backup your save in the event of gamejolt API being down." & vbNewLine &