mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07:00
11 lines
269 B
C++
11 lines
269 B
C++
#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;
|
|
}
|