blob: 39ba4c34fe8f72d87ca2565edc3409974cb48e58 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "2s2h/SaveManager/SaveManager.h"
#include "z64.h"
// Final legacy migration, prior to merging owl saves into main save file.
void SaveManager_Migration_4(nlohmann::json& j) {
nlohmann::json rootSave;
rootSave["newCycleSave"] = j;
j = rootSave;
}
|