summaryrefslogtreecommitdiff
path: root/src/code
diff options
context:
space:
mode:
authorDragorn421 <Dragorn421@users.noreply.github.com>2024-09-10 19:49:39 +0200
committerGitHub <noreply@github.com>2024-09-10 14:49:39 -0300
commit19da273ca0d4a1b1e2f44a3fee0983a97c7558a0 (patch)
tree94f93d641a13054623529927ea0beff9000e8f87 /src/code
parent6eaf196927eb6c4465c3b6c8fcdcefb08a9bc377 (diff)
[headers] Add kaleido_manager.h, clean up z64jpeg.h protos (#1688)
Diffstat (limited to 'src/code')
-rw-r--r--src/code/game.c1
-rw-r--r--src/code/jpegdecoder.c4
-rw-r--r--src/code/z_kaleido_manager.c2
-rw-r--r--src/code/z_kaleido_scope_call.c2
-rw-r--r--src/code/z_player_call.c2
5 files changed, 7 insertions, 4 deletions
diff --git a/src/code/game.c b/src/code/game.c
index 69131cc70..fe8a9915a 100644
--- a/src/code/game.c
+++ b/src/code/game.c
@@ -11,7 +11,6 @@
#include "libc64/malloc.h"
#include "z64debug_text.h"
-#include "z64pause_menu.h"
#include "z64rumble.h"
#include "z64speed_meter.h"
#include "z64vimode.h"
diff --git a/src/code/jpegdecoder.c b/src/code/jpegdecoder.c
index 01d097641..c1ace3cdd 100644
--- a/src/code/jpegdecoder.c
+++ b/src/code/jpegdecoder.c
@@ -2,6 +2,10 @@
#include "stdbool.h"
#include "macros.h"
+s32 JpegDecoder_ProcessMcu(JpegHuffmanTable* hTable0, JpegHuffmanTable* hTable1, u16* mcu, s16* unk);
+s32 JpegDecoder_ParseNextSymbol(JpegHuffmanTable* hTable, s16* outCoeff, s8* outZeroCount);
+u16 JpegDecoder_ReadBits(u8 len);
+
u8* sJpegBitStreamPtr;
u32 sJpegBitStreamByteIdx;
u8 sJpegBitStreamBitIdx;
diff --git a/src/code/z_kaleido_manager.c b/src/code/z_kaleido_manager.c
index 5ec22b1d3..8b43b255f 100644
--- a/src/code/z_kaleido_manager.c
+++ b/src/code/z_kaleido_manager.c
@@ -1,4 +1,4 @@
-#include "z64pause_menu.h"
+#include "kaleido_manager.h"
#include "global.h"
#include "fault.h"
diff --git a/src/code/z_kaleido_scope_call.c b/src/code/z_kaleido_scope_call.c
index dd409a462..3a9b42c7b 100644
--- a/src/code/z_kaleido_scope_call.c
+++ b/src/code/z_kaleido_scope_call.c
@@ -1,5 +1,5 @@
#include "prevent_bss_reordering.h"
-#include "z64pause_menu.h"
+#include "kaleido_manager.h"
#include "z64.h"
#include "z64shrink_window.h"
diff --git a/src/code/z_player_call.c b/src/code/z_player_call.c
index 51a4a6d48..da82e88ff 100644
--- a/src/code/z_player_call.c
+++ b/src/code/z_player_call.c
@@ -1,5 +1,5 @@
#include "global.h"
-#include "z64pause_menu.h"
+#include "kaleido_manager.h"
#define FLAGS \
(ACTOR_FLAG_TARGETABLE | ACTOR_FLAG_FRIENDLY | ACTOR_FLAG_10 | ACTOR_FLAG_20 | ACTOR_FLAG_200000 | \