removed all 'whitespace' lint errors (#838)

This commit is contained in:
gravestench 2020-10-26 00:33:04 +00:00 committed by GitHub
parent 02acba231b
commit 42a48fe03a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -133,22 +133,22 @@ func NewSoundEngine(provider d2interface.AudioProvider,
err = term.BindAction("activesounds", "list currently active sounds", func() {
for s := range r.sounds {
if err != nil {
log.Print(err)
return
}
log.Println(s)
}
})
err = term.BindAction("killsounds", "kill active sounds", func() {
for s := range r.sounds {
if err != nil {
log.Print(err)
return
}
s.Stop()
}
})