mirror of
https://github.com/azahar-emu/azahar.git
synced 2026-06-05 18:23:39 -04:00
android: Convert bgColor default values to Int (#1959)
This commit is contained in:
parent
39363cd435
commit
5fc9732f05
1 changed files with 3 additions and 3 deletions
|
|
@ -1275,7 +1275,7 @@ class SettingsFragmentPresenter(private val fragmentView: SettingsFragmentView)
|
|||
override val section = null
|
||||
override val isRuntimeEditable = false
|
||||
override val valueAsString = int.toString()
|
||||
override val defaultValue = FloatSetting.BACKGROUND_RED.defaultValue
|
||||
override val defaultValue = FloatSetting.BACKGROUND_RED.defaultValue.toInt()
|
||||
}
|
||||
add(
|
||||
SliderSetting(
|
||||
|
|
@ -1298,7 +1298,7 @@ class SettingsFragmentPresenter(private val fragmentView: SettingsFragmentView)
|
|||
override val section = null
|
||||
override val isRuntimeEditable = false
|
||||
override val valueAsString = int.toString()
|
||||
override val defaultValue = FloatSetting.BACKGROUND_GREEN.defaultValue
|
||||
override val defaultValue = FloatSetting.BACKGROUND_GREEN.defaultValue.toInt()
|
||||
}
|
||||
add(
|
||||
SliderSetting(
|
||||
|
|
@ -1321,7 +1321,7 @@ class SettingsFragmentPresenter(private val fragmentView: SettingsFragmentView)
|
|||
override val section = null
|
||||
override val isRuntimeEditable = false
|
||||
override val valueAsString = int.toString()
|
||||
override val defaultValue = FloatSetting.BACKGROUND_BLUE.defaultValue
|
||||
override val defaultValue = FloatSetting.BACKGROUND_BLUE.defaultValue.toInt()
|
||||
}
|
||||
add(
|
||||
SliderSetting(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue