From 090b6f53551d410ba1cd28ffefb9ae883bfc1a04 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 9 Jan 2021 19:37:25 +0100 Subject: [PATCH] Check /code/ for the .rpx of a .wuhb --- src/romfs_helper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/romfs_helper.cpp b/src/romfs_helper.cpp index f2dfd56..c8d8264 100644 --- a/src/romfs_helper.cpp +++ b/src/romfs_helper.cpp @@ -70,7 +70,7 @@ int32_t getRPXInfoForID(uint32_t id, romfs_fileInfo *info) { snprintf(romName, 10, "%08X", id); char root[12]; - snprintf(root, 12, "%08X:/", id); + snprintf(root, 12, "%08X:/code/", id); if (!(dir = opendir(root))) { return -2;