diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-07-22 16:19:39 -0400 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-08-20 15:57:28 +0200 |
| commit | 97c898ce6cab2194151db70f4af09258a9b02f7b (patch) | |
| tree | a446aa89a202abfb9a31912dd1c9b02bece447c0 /go | |
| parent | d370c734b4d5684db3a8e680d0ca1a6bc88eed42 (diff) | |
| download | muhqs-game-97c898ce6cab2194151db70f4af09258a9b02f7b.tar.gz muhqs-game-97c898ce6cab2194151db70f4af09258a9b02f7b.zip | |
remove debug print
Diffstat (limited to 'go')
| -rw-r--r-- | go/ui/update.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/go/ui/update.go b/go/ui/update.go index 8d859595..0bdb8428 100644 --- a/go/ui/update.go +++ b/go/ui/update.go @@ -1,8 +1,6 @@ package ui import ( - "log" - "github.com/hajimehoshi/ebiten/v2" "github.com/hajimehoshi/ebiten/v2/inpututil" ) @@ -56,7 +54,6 @@ var Input []InputEvent // ConsumeInput removes the i-ths input from the quehe. func ConsumeInput(i int) { - log.Println("consume input", i) if len(Input) == 1 { Input = []InputEvent{} } else { |
