From: Michael Theall Date: Wed, 20 Apr 2016 22:37:34 +0000 (-0500) Subject: Reset romFS_offset on romfsExit() X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=6f378c8297ed0e137f01c6b8ff968f28b35478f6;p=corbenik%2Fctrulib.git Reset romFS_offset on romfsExit() --- diff --git a/libctru/source/romfs_dev.c b/libctru/source/romfs_dev.c index f80c775..7006e71 100644 --- a/libctru/source/romfs_dev.c +++ b/libctru/source/romfs_dev.c @@ -272,6 +272,7 @@ Result romfsExit(void) free(fileHashTable); free(dirTable); free(fileTable); + romFS_offset = 0; return 0; }