Added the two remaining checks regarding the backup save feature
This commit is contained in:
parent
fe62e07e4c
commit
5c66805ace
|
@ -907,7 +907,7 @@ Public Class MainMenuScreen
|
|||
' 3. Apply Extra Fixes.
|
||||
|
||||
' 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!
|
||||
Dim timestamp As String = Date.Now.ToString("yyyy-MM-dd_HH.mm.ss")
|
||||
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
If saveSessionFailed = True Then
|
||||
.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 &
|
||||
"again in order to prevent data corruption." & vbNewLine & vbNewLine &
|
||||
"We have backup your save in the event of gamejolt API being down." & vbNewLine &
|
||||
|
|
Loading…
Reference in New Issue