Files
libretro/emulators/citra.yml
Abdessamad Derraz b7528a71e7 fix: correct type and path fields across 58 emulator profiles
49 libretro cores had type: game/utility/test instead of type: libretro,
breaking the all_libretro filtering in resolve_platform_cores and
excluding them from platform packs (e.g. cannonball missing from
RetroArch). core_classification already carries the descriptive role.

9 profiles with subdirectory-loading cores (cannonball/, nxengine/,
Citra/sysdata/, mame2003/, mame2003-plus/, mame2010/) now have path:
fields so cross-reference places files at the correct destination.

resolve_local_file now tries basename when name contains a path
separator (e.g. res/tilemap.bin -> tilemap.bin), fixing resolution
of files with subdirectory names.
2026-03-29 09:53:46 +02:00

58 lines
2.0 KiB
YAML

emulator: Citra
type: standalone + libretro
core_classification: community_fork
source: "https://github.com/libretro/citra"
upstream: "https://github.com/citra-emu/citra"
profiled_date: "2026-03-23"
core_version: "Git"
display_name: "Nintendo - 3DS (Citra)"
cores: [citra]
systems: [nintendo-3ds]
notes: |
Citra 3DS emulator. Upstream taken down March 2024 (Nintendo lawsuit).
Mirror: https://github.com/citra-mirror/citra
Data dir: {save_dir}/Citra/ or {system_dir}/Citra/
ref: src/citra_libretro/citra_libretro.cpp:460-466
HLE for most services. Embedded open-source replacements for shared font,
Mii data, country list, and bad word list compiled into the binary.
ref: src/core/file_sys/archive_ncch.cpp:9-27, 133-167
firmware_count absent in .info (= 0). All files optional.
files:
- name: aes_keys.txt
path: "Citra/sysdata/aes_keys.txt"
system: nintendo-3ds
description: "AES encryption keys"
required: false
source_ref: "src/core/hw/aes/key.cpp:207-208 LoadPresetKeys()"
note: "needed for encrypted games"
- name: boot9.bin
path: "Citra/sysdata/boot9.bin"
system: nintendo-3ds
description: "ARM9 bootrom"
required: false
validation: [size]
source_ref: "src/core/hw/aes/key.cpp:162-172 LoadBootromKeys(), src/core/hw/rsa/rsa.cpp:55-65 InitSlots()"
note: "expected size 65536 bytes, provides AES and RSA keys"
- name: shared_font.bin
path: "Citra/sysdata/shared_font.bin"
system: nintendo-3ds
description: "system shared font (legacy format)"
required: false
hle_fallback: true
source_ref: "src/core/hle/service/apt/apt.cpp:259-267 LoadLegacySharedFont()"
note: "fallback to embedded open-source replacement font"
- name: seeddb.bin
path: "Citra/sysdata/seeddb.bin"
system: nintendo-3ds
description: "game seed database"
required: false
source_ref: "src/core/file_sys/seed_db.cpp:13-27 SeedDB::Load()"
note: "needed for seed-encrypted games (9.6+ titles), creates empty if missing"