Skip to content

Commit

Permalink
🐛 修复代码没抄全导致的可能性死循环(
Browse files Browse the repository at this point in the history
  • Loading branch information
WOSHIZHAZHA120 committed May 8, 2024
1 parent 6cdff68 commit 4811630
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const test_tetrio_info = () => {
continue
}
new_min_tr = this.min_tr - offset - overflow
new_min_tr = this.min_tr - offset + overflow
if (new_min_tr < 0) {
overflow++
Expand All @@ -181,6 +181,8 @@ const test_tetrio_info = () => {
this.split_interval = (range_max - range_min) / 4
break
}
offset++
}
this.offset = offset
Expand Down

0 comments on commit 4811630

Please sign in to comment.