feat(client): SRegDestory should be called upon exit, saving registry entries to a file

This commit is contained in:
phaneron 2025-04-16 11:21:52 -04:00
parent 0105c72da0
commit 50e37d16bc

View file

@ -633,6 +633,12 @@ void DestroyGlobal() {
// TODO // TODO
} }
void StormDestroy() {
// TODO
SRegDestroy();
}
void CommonMain() { void CommonMain() {
StormInitialize(); StormInitialize();
@ -670,8 +676,9 @@ void CommonMain() {
DestroyGlobal(); DestroyGlobal();
} }
StormDestroy();
// TODO: // TODO:
// StormDestroy();
// Misc Cleanup // Misc Cleanup
} }