summary refs log tree commit diff
diff options
context:
space:
mode:
authorzlago2025-02-11 23:42:33 +0100
committerzlago2025-03-04 21:10:50 +0100
commit572ae2b14906462a81a233a0e06180c1dc815786 (patch)
treee2cc603854332865508a5a74757e41a31d3fd214
parentf2cae9dbd96fde6eeb47d2f3ba3404944230dfba (diff)
tweaks
-rw-r--r--src/incbin.h2
-rw-r--r--src/player.c1
-rw-r--r--src/res/enemy.asebin914 -> 724 bytes
-rw-r--r--src/res/flier.asebin964 -> 691 bytes
-rw-r--r--src/res/icon.pngbin239 -> 211 bytes
-rw-r--r--src/res/pacer.asebin504 -> 504 bytes
-rw-r--r--src/res/padding.asebin401 -> 350 bytes
7 files changed, 2 insertions, 1 deletions
diff --git a/src/incbin.h b/src/incbin.h
index d768006..5dbd575 100644
--- a/src/incbin.h
+++ b/src/incbin.h
@@ -1,6 +1,6 @@
 #pragma once
 
-#if defined(__APPLE__)
+#if defined(__APPLE__) || (defined(__MINGW32__) && !defined(__MINGW64__))
 extern char const game_icon[], game_icon_end[];
 #else
 extern char const _game_icon[], _game_icon_end[];
diff --git a/src/player.c b/src/player.c
index 40c5f6f..83720e6 100644
--- a/src/player.c
+++ b/src/player.c
@@ -332,6 +332,7 @@ static int player_update(struct entity *self) {
 				self->timer = 60;
 			}
 			if (self->timer-- == 0) {
+				anim(self, PLAYER_A_IDLE);
 				self->state = PLAYER_IDLE;
 			}
 			break;
diff --git a/src/res/enemy.ase b/src/res/enemy.ase
index aa73c16..ce1bad6 100644
--- a/src/res/enemy.ase
+++ b/src/res/enemy.ase
Binary files differdiff --git a/src/res/flier.ase b/src/res/flier.ase
index 741409a..0577788 100644
--- a/src/res/flier.ase
+++ b/src/res/flier.ase
Binary files differdiff --git a/src/res/icon.png b/src/res/icon.png
index 04d5199..1298225 100644
--- a/src/res/icon.png
+++ b/src/res/icon.png
Binary files differdiff --git a/src/res/pacer.ase b/src/res/pacer.ase
index 6e05528..a9ff0ea 100644
--- a/src/res/pacer.ase
+++ b/src/res/pacer.ase
Binary files differdiff --git a/src/res/padding.ase b/src/res/padding.ase
index 3bdd076..39f4cfc 100644
--- a/src/res/padding.ase
+++ b/src/res/padding.ase
Binary files differ