Fix maybe
This commit is contained in:
@@ -62,7 +62,7 @@ public class BazookaManager : MonoBehaviour
|
||||
Debug.LogWarning("Failed to load save file");
|
||||
}
|
||||
}
|
||||
if (PlayerPrefs.GetInt("LegacyConversion", 0) == 1)
|
||||
if (!PlayerPrefs.HasKey("LegacyConversion"))
|
||||
{
|
||||
PlayerPrefs.SetInt("LegacyConversion", 1);
|
||||
if (PlayerPrefs.HasKey("HighScoreV2"))
|
||||
|
||||
@@ -23,7 +23,7 @@ public class LoadingMenu : MonoBehaviour
|
||||
Application.targetFrameRate = 360;
|
||||
QualitySettings.vSyncCount = 0;
|
||||
}
|
||||
if (PlayerPrefs.GetInt("LegacyConversion", 0) == 0)
|
||||
if (!PlayerPrefs.HasKey("LegacyConversion"))
|
||||
{
|
||||
if (PlayerPrefs.GetString("latestVersion", Application.version) == "1.4.0-beta1")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user