Updates to match new primary repo.

This commit is contained in:
2023-10-02 14:38:49 -04:00
parent db5da9bb48
commit 8f7b16a9ae
13 changed files with 545 additions and 229 deletions

View File

@@ -5,7 +5,6 @@ import (
_ "embed"
"image"
_ "image/png"
"log"
"github.com/hajimehoshi/ebiten/v2"
)
@@ -63,7 +62,7 @@ func (f *Flame) GetHeight() int {
func init() {
img, _, err := image.Decode(bytes.NewReader(flameAssets_png))
if err != nil {
log.Fatal(err)
DashLogger.Fatal(err)
}
assetsFlame = ebiten.NewImageFromImage(img)
}