Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ksthicke committed May 17, 2024
1 parent 7e7ea3e commit a2b9392
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/renderer/components/SettingsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export default {
break
case 'depth':
this.$store.dispatch(
'setPvEParam',
'setPvEParam',
'go depth ' + this.PvEInput + ' movetime 60000')
this.$store.dispatch('setPvEInput', this.PvEInput)
break
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/engine/driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ export default class EngineDriver {
this.events.emit('info', info)
break
}
case 'bestmove':
console.log('emit bestmove')
case 'bestmove': {
const words = line.split(' ')
const ucimove = words[1]
this.events.emit('bestmove', ucimove)
break
}
}
}

Expand Down

0 comments on commit a2b9392

Please sign in to comment.