Skip to content
This repository has been archived by the owner on Mar 2, 2022. It is now read-only.

regions

Alexander Hartmann edited this page Sep 21, 2015 · 1 revision

This struct includes all region, that are used on the 3DS.

Australia is not used, instead it uses European region

typedef struct regionsStruct
{
    u32 japan : 1;
    u32 northAmerica : 1;
    u32 europe : 1;
    u32 australia : 1;
    u32 china : 1;
    u32 korea : 1;
    u32 taiwan : 1;
    u32 placeholder : 1;
} regions;
Clone this wiki locally