use CheckErr
This commit is contained in:
parent
6a85dcb816
commit
ebb4d7102b
|
@ -20,7 +20,6 @@ import (
|
|||
"encoding/binary"
|
||||
"errors"
|
||||
"io"
|
||||
"log"
|
||||
"os"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
|
@ -148,18 +147,18 @@ func update(m *milkDropWindow) (bool, error) {
|
|||
func milkbucket(cmd *cobra.Command, args []string) {
|
||||
err := checkStdin()
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
cobra.CheckErr(err)
|
||||
}
|
||||
|
||||
err = sdl.Init(sdl.INIT_VIDEO)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
cobra.CheckErr(err)
|
||||
}
|
||||
defer sdl.Quit()
|
||||
|
||||
m, err := newMilkDropWindow(800, 600, args)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
cobra.CheckErr(err)
|
||||
}
|
||||
defer m.destroy()
|
||||
|
||||
|
@ -171,7 +170,7 @@ func milkbucket(cmd *cobra.Command, args []string) {
|
|||
for running {
|
||||
running, err = update(m)
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
cobra.CheckErr(err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue