From 6f378c8297ed0e137f01c6b8ff968f28b35478f6 Mon Sep 17 00:00:00 2001 From: Michael Theall Date: Wed, 20 Apr 2016 17:37:34 -0500 Subject: [PATCH] Reset romFS_offset on romfsExit() --- libctru/source/romfs_dev.c | 1 + 1 file changed, 1 insertion(+) 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; }