mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-07-08 08:12:57 +12:00
Some checks are pending
Android Build / x64 (release) (push) Waiting to run
Android Build / arm64 (release) (push) Waiting to run
HTTP Server Build / build (push) Waiting to run
Hydra Core Build / Windows (push) Waiting to run
Hydra Core Build / MacOS (push) Waiting to run
Hydra Core Build / Linux (push) Waiting to run
Hydra Core Build / Android-x64 (push) Waiting to run
Hydra Core Build / ARM-Libretro (push) Waiting to run
Linux AppImage Build / build (push) Waiting to run
Linux Build / build (push) Waiting to run
MacOS Build / MacOS-arm64 (push) Waiting to run
MacOS Build / MacOS-x86_64 (push) Waiting to run
MacOS Build / MacOS-Universal (push) Blocked by required conditions
Qt Build / Windows (push) Waiting to run
Qt Build / MacOS-arm64 (push) Waiting to run
Qt Build / MacOS-x86_64 (push) Waiting to run
Qt Build / MacOS-Universal (push) Blocked by required conditions
Qt Build / Linux (push) Waiting to run
Windows Build / build (push) Waiting to run
iOS Simulator Build / build (push) Waiting to run
23 lines
No EOL
593 B
C++
23 lines
No EOL
593 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
// Codes for every 3DS system model
|
|
// The 3-letter codes are codenames used by the ACT service, and can also be found on the hardware itself
|
|
// This info can be retrieved in a variety of ways, usually through CFG::GetSystemModel
|
|
namespace SystemModel {
|
|
enum : std::uint32_t {
|
|
Nintendo3DS = 0,
|
|
Nintendo3DS_XL = 1,
|
|
NewNintendo3DS = 2,
|
|
Nintendo2DS = 3,
|
|
NewNintendo3DS_XL = 4,
|
|
NewNintendo2DS_XL = 5,
|
|
|
|
CTR = Nintendo3DS,
|
|
SPR = Nintendo3DS_XL,
|
|
KTR = NewNintendo3DS,
|
|
FTR = Nintendo2DS,
|
|
RED = NewNintendo3DS_XL,
|
|
JAN = NewNintendo2DS_XL,
|
|
};
|
|
} |