Config: auto-select region and language

This commit is contained in:
wwylele 2016-11-30 11:32:09 +02:00
parent 8d529a5cda
commit 84e78790ab
11 changed files with 108 additions and 7 deletions

View file

@ -110,5 +110,9 @@ struct Values {
u16 gdbstub_port;
} extern values;
// a special value for Values::region_value indicating that citra will automatically select a region
// value to fit the region lockout info of the game
static constexpr int REGION_VALUE_AUTO_SELECT = -1;
void Apply();
}