diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-07-22 16:19:39 -0400 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-07-24 12:22:10 -0400 |
| commit | 71b060a6b79ebee5cd4c7c29b598543d2b32dc93 (patch) | |
| tree | a557c22ee69e42b5c75d9a7bdfe0d0425883b815 | |
| parent | a0db7bb48e876fc3262c89a232b2fed1de8cf6e4 (diff) | |
| download | muhqs-game-71b060a6b79ebee5cd4c7c29b598543d2b32dc93.tar.gz muhqs-game-71b060a6b79ebee5cd4c7c29b598543d2b32dc93.zip | |
remove debug print
| -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 { |
