examples/mandelbrot: Remove FPS meter

This commit is contained in:
Hajime Hoshi 2017-12-16 20:39:53 +09:00
parent ac944d57e1
commit 8c1cafd6ae

View File

@ -17,12 +17,10 @@
package main
import (
"fmt"
"log"
"math"
"github.com/hajimehoshi/ebiten"
"github.com/hajimehoshi/ebiten/ebitenutil"
)
const (
@ -91,7 +89,6 @@ func update(screen *ebiten.Image) error {
}
screen.DrawImage(offscreen, nil)
ebitenutil.DebugPrint(screen, fmt.Sprintf("FPS: %0.2f", ebiten.CurrentFPS()))
return nil
}