aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-10-05 12:22:00 +1000
committerquou <quou@disroot.org>2024-10-05 12:22:00 +1000
commit66e1d8ff03e2df73d9690f5702633cb6934a3052 (patch)
tree6f949ca50435f7fc2a756c7127e0186c5f3aaedd
parent0e75a2949678cb8a68fb0819355864aa6db2cb43 (diff)
give the game a name
-rw-r--r--.gitignore2
-rw-r--r--Makefile4
-rw-r--r--config.h2
-rw-r--r--hftrss.c (renamed from 1bitjam.c)0
4 files changed, 4 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 40ef3ee..c366547 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,5 +7,5 @@ pack.h
/convimg
/convanim
/packassets
-/1bitjam
+/hftrss
/distrib
diff --git a/Makefile b/Makefile
index b7582d1..61b0cf4 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ includes = -I./
cflags = $(includes) $(conf_cflags) \
-Wall -Wextra -pedantic -std=c90
lflags = $(libs) $(conf_lflags)
-target = 1bitjam
+target = hftrss
int_dir = intermediate
data_dir = data
convimg = convimg
@@ -43,13 +43,13 @@ ifeq ($(config), release_gnu64)
endif
sources = \
- 1bitjam.c \
animation.c \
asset.c \
deathzone.c \
effect.c \
enemy.c \
game.c \
+ hftrss.c \
hud.c \
map.c \
maths.c \
diff --git a/config.h b/config.h
index 6a69ee7..906f097 100644
--- a/config.h
+++ b/config.h
@@ -3,7 +3,7 @@
#include "maths.h"
-#define game_name "1bit Game Jam"
+#define game_name "hftrss"
#define memory_size (1024 * 32)
#define app_memory_size (1024 * 16)
diff --git a/1bitjam.c b/hftrss.c
index 1b903c1..1b903c1 100644
--- a/1bitjam.c
+++ b/hftrss.c