summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorDerek Hensley <hensley.derek58@gmail.com>2024-10-15 04:41:48 -0700
committerGitHub <noreply@github.com>2024-10-15 22:41:48 +1100
commitf946162a892712ccdc31cb319e425146e450972c (patch)
tree4c9f92c240c3f3a6aac95896da35a7b08529391b /assets
parent15ddcac8a431506f5e34bea717dab80432ed5590 (diff)
Extract assets to extracted (#1708)
Diffstat (limited to 'assets')
-rw-r--r--assets/.gitignore6
-rw-r--r--assets/archives/map_grand_static/map_grand_static.c (renamed from assets/c/archives/map_grand_static/map_grand_static.c)0
-rw-r--r--assets/archives/map_grand_static/map_grand_static.h (renamed from assets/c/archives/map_grand_static/map_grand_static.h)0
-rw-r--r--assets/archives/map_i_static/map_i_static.c (renamed from assets/c/archives/map_i_static/map_i_static.c)0
-rw-r--r--assets/archives/map_i_static/map_i_static.h (renamed from assets/c/archives/map_i_static/map_i_static.h)0
-rw-r--r--assets/c/.gitignore2
-rw-r--r--assets/text/message_data.h20
-rw-r--r--assets/text/message_data_staff.h1
8 files changed, 21 insertions, 8 deletions
diff --git a/assets/.gitignore b/assets/.gitignore
deleted file mode 100644
index 7e53529fc..000000000
--- a/assets/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-*.bin
-*.c
-*.h
-*.cfg
-*.vtx.inc
-*.dlist.inc
diff --git a/assets/c/archives/map_grand_static/map_grand_static.c b/assets/archives/map_grand_static/map_grand_static.c
index 582d37e68..582d37e68 100644
--- a/assets/c/archives/map_grand_static/map_grand_static.c
+++ b/assets/archives/map_grand_static/map_grand_static.c
diff --git a/assets/c/archives/map_grand_static/map_grand_static.h b/assets/archives/map_grand_static/map_grand_static.h
index a940d4d42..a940d4d42 100644
--- a/assets/c/archives/map_grand_static/map_grand_static.h
+++ b/assets/archives/map_grand_static/map_grand_static.h
diff --git a/assets/c/archives/map_i_static/map_i_static.c b/assets/archives/map_i_static/map_i_static.c
index 7b9432786..7b9432786 100644
--- a/assets/c/archives/map_i_static/map_i_static.c
+++ b/assets/archives/map_i_static/map_i_static.c
diff --git a/assets/c/archives/map_i_static/map_i_static.h b/assets/archives/map_i_static/map_i_static.h
index c614bb6f8..c614bb6f8 100644
--- a/assets/c/archives/map_i_static/map_i_static.h
+++ b/assets/archives/map_i_static/map_i_static.h
diff --git a/assets/c/.gitignore b/assets/c/.gitignore
deleted file mode 100644
index 66dbd2b82..000000000
--- a/assets/c/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-!*.c
-!*.h
diff --git a/assets/text/message_data.h b/assets/text/message_data.h
new file mode 100644
index 000000000..1b0ab444f
--- /dev/null
+++ b/assets/text/message_data.h
@@ -0,0 +1,20 @@
+#include "text/message_data.h"
+
+/*
+ * The following two messages should be kept last and in this order.
+ * Message 0xFFFD must be last to not break the message debugger.
+ * Message 0xFFFC must be immediately before message 0xFFFD to not break Font_LoadOrderedFont.
+ */
+
+DEFINE_MESSAGE(0xFFFC, 0x00, 0x00,
+MSG(
+HEADER(0x0000, 0xFE, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF)
+)
+)
+
+DEFINE_MESSAGE(0xFFFD, 0x00, 0x00,
+MSG(
+HEADER(0x0000, 0xFE, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF)
+"end!"
+)
+)
diff --git a/assets/text/message_data_staff.h b/assets/text/message_data_staff.h
new file mode 100644
index 000000000..c282d7f7d
--- /dev/null
+++ b/assets/text/message_data_staff.h
@@ -0,0 +1 @@
+#include "text/message_data_staff.h"