Skip to content

Commit

Permalink
fix hard mode selection not working well
Browse files Browse the repository at this point in the history
  • Loading branch information
nethical6 committed Sep 21, 2024
1 parent 1a149f6 commit 4c08a7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void onViewCreated(@NonNull View view, Bundle savedInstanceState) {

// Set initial selection based on SharedPreferences
int selectedMode = sharedPreferences.getInt(
DigiConstants.PREF_MODE, DigiConstants.DIFFICULTY_LEVEL_EXTREME
DigiConstants.PREF_MODE, DigiConstants.DIFFICULTY_LEVEL_EASY
);
switch (selectedMode) {
case DigiConstants.DIFFICULTY_LEVEL_NORMAL:
Expand Down

0 comments on commit 4c08a7d

Please sign in to comment.