feat: Add romfslite mod folder support (Atmosphere 1.9.5)

Support the romfslite folder type introduced in Atmosphere 1.9.5 for
memory-optimized mod loading. The emulator now detects and loads
romfslite folders the same way as romfs folders.

Signed-off-by: Zephyron <zephyron@citron-emu.org>
This commit is contained in:
Zephyron
2025-10-11 20:24:18 +10:00
parent c8b3f0c98c
commit df14b96c6b
2 changed files with 10 additions and 3 deletions

View File

@@ -4,5 +4,5 @@
package org.citron.citron_emu.utils
object AddonUtil {
val validAddonDirectories = listOf("cheats", "exefs", "romfs")
val validAddonDirectories = listOf("cheats", "exefs", "romfs", "romfslite")
}