android: Replace CITRA username with AZAHAR

This commit is contained in:
Kleidis 2025-03-02 02:28:12 +01:00 committed by OpenSauce
parent 00b4c11ecf
commit e60b6e610a
2 changed files with 3 additions and 3 deletions

View File

@ -221,7 +221,7 @@ class SettingsActivity : AppCompatActivity(), SettingsActivityView {
// Set default values for system config file // Set default values for system config file
SystemSaveGame.apply { SystemSaveGame.apply {
setUsername("CITRA") setUsername("AZAHAR")
setBirthday(3, 25) setBirthday(3, 25)
setSystemLanguage(1) setSystemLanguage(1)
setSoundOutputMode(1) setSoundOutputMode(1)

View File

@ -252,14 +252,14 @@ class SettingsFragmentPresenter(private val fragmentView: SettingsFragmentView)
override val section = null override val section = null
override val isRuntimeEditable = false override val isRuntimeEditable = false
override val valueAsString get() = string override val valueAsString get() = string
override val defaultValue = "CITRA" override val defaultValue = "AZAHAR"
} }
add( add(
StringInputSetting( StringInputSetting(
usernameSetting, usernameSetting,
R.string.username, R.string.username,
0, 0,
"CITRA", "AZAHAR",
10 10
) )
) )