Disable rageshake by default. Can be enabled in the developed settings, but this is not available in the release version.

This commit is contained in:
Benoit Marty 2023-06-30 18:09:15 +02:00 committed by Benoit Marty
parent eefad5acde
commit c02dd599d9
3 changed files with 4 additions and 4 deletions

View file

@ -23,7 +23,7 @@ import kotlinx.coroutines.flow.MutableStateFlow
const val A_SENSITIVITY = 1f
class FakeRageshakeDataStore(
isEnabled: Boolean = true,
isEnabled: Boolean = false,
sensitivity: Float = A_SENSITIVITY,
) : RageshakeDataStore {