Reset romFS_offset on romfsExit()

This commit is contained in:
Michael Theall 2016-04-20 17:37:34 -05:00
parent f9f7eccc33
commit 6f378c8297

View File

@ -272,6 +272,7 @@ Result romfsExit(void)
free(fileHashTable);
free(dirTable);
free(fileTable);
romFS_offset = 0;
return 0;
}