We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6dd3b12 + 1bf8a66 commit 81779a1Copy full SHA for 81779a1
Packages/com.trytalo.talo/Runtime/APIs/SavesAPI.cs
@@ -206,7 +206,10 @@ private GameSave UpdateOfflineSaves(GameSave incomingSave)
206
else
207
{
208
// first entry into the saves file
209
- offlineIncomingSave.id = -1;
+ if (offlineIncomingSave.id == 0)
210
+ {
211
+ offlineIncomingSave.id = -1;
212
+ }
213
offlineContent = new OfflineSavesContent(new GameSave[] { offlineIncomingSave });
214
}
215
0 commit comments