Set default username to AZAHAR (#586)

* Set default username to AZAHAR

Also set the default birthday to November 7.
This commit is contained in:
MisterSheeple 2025-03-01 05:44:31 -05:00 committed by GitHub
parent 3406c389ca
commit b8e138679c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
// Copyright 2023 Citra Emulator Project // Copyright Citra Emulator Project / Azahar Emulator Project
// Licensed under GPLv2 or any later version // Licensed under GPLv2 or any later version
// Refer to the license.txt file included. // Refer to the license.txt file included.
@ -38,8 +38,8 @@ constexpr u8 DEFAULT_SOUND_OUTPUT_MODE = SOUND_STEREO;
// constants. // constants.
constexpr u64_le DEFAULT_CONSOLE_ID = 0; constexpr u64_le DEFAULT_CONSOLE_ID = 0;
constexpr u32_le DEFAULT_CONSOLE_RANDOM_NUMBER = 0; constexpr u32_le DEFAULT_CONSOLE_RANDOM_NUMBER = 0;
constexpr UsernameBlock DEFAULT_USERNAME{{u"CITRA"}, 0, 0}; constexpr UsernameBlock DEFAULT_USERNAME{{u"AZAHAR"}, 0, 0};
constexpr BirthdayBlock DEFAULT_BIRTHDAY{3, 25}; // March 25th, 2014 constexpr BirthdayBlock DEFAULT_BIRTHDAY{11, 7}; // November 7th, 2024
constexpr u8 DEFAULT_LANGUAGE = LANGUAGE_EN; constexpr u8 DEFAULT_LANGUAGE = LANGUAGE_EN;
constexpr ConsoleCountryInfo DEFAULT_COUNTRY_INFO{ constexpr ConsoleCountryInfo DEFAULT_COUNTRY_INFO{
{0, 0}, WASHINGTON_DC_STATE_ID, UNITED_STATES_COUNTRY_ID}; {0, 0}, WASHINGTON_DC_STATE_ID, UNITED_STATES_COUNTRY_ID};