aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2025-07-22 16:19:39 -0400
committerFlorian Fischer <florian.fischer@muhq.space>2025-07-24 12:22:10 -0400
commit71b060a6b79ebee5cd4c7c29b598543d2b32dc93 (patch)
treea557c22ee69e42b5c75d9a7bdfe0d0425883b815
parenta0db7bb48e876fc3262c89a232b2fed1de8cf6e4 (diff)
downloadmuhqs-game-71b060a6b79ebee5cd4c7c29b598543d2b32dc93.tar.gz
muhqs-game-71b060a6b79ebee5cd4c7c29b598543d2b32dc93.zip
remove debug print
-rw-r--r--go/ui/update.go3
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 {