Skip to content

Commit

Permalink
change default depth to 14
Browse files Browse the repository at this point in the history
  • Loading branch information
mac authored and mac committed Oct 4, 2024
1 parent 4a8392b commit 83c0ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function App() {
height: number;
}>();
// 从 localStorage 加载初始深度值
const initialDepth = Number(localStorage.getItem('depth')) || 10;
const initialDepth = Number(localStorage.getItem('depth')) || 15;
const [depth, setDepth] = useState(initialDepth);

// Initialize OpenCV and Chess Engine
Expand Down

0 comments on commit 83c0ee2

Please sign in to comment.