Skip to content

Commit

Permalink
Update default value for useWebGL setting
Browse files Browse the repository at this point in the history
  • Loading branch information
codergautam committed Jan 14, 2024
1 parent ed1ffb1 commit e855e8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/game/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const settingsList: Record<string, SettingType> = {
useWebGL: {
name: 'Use WebGL (requires reload)',
type: 'toggle',
default: true,
default: false,
onChange: (newValue: boolean) => {
const saved = localStorage.getItem('swordbattle:WebGL');
if (newValue) localStorage.setItem('swordbattle:WebGL', 'OK');
Expand Down

0 comments on commit e855e8d

Please sign in to comment.