Misc: Make struct member functions file-local

This commit is contained in:
Stenzek
2023-11-18 16:21:51 +10:00
parent bee1f986a9
commit cce7be4723
39 changed files with 680 additions and 595 deletions

View File

@ -23,6 +23,8 @@
Log_SetChannel(MDEC);
namespace MDEC {
namespace {
static constexpr u32 DATA_IN_FIFO_SIZE = 1024;
static constexpr u32 DATA_OUT_FIFO_SIZE = 768;
static constexpr u32 NUM_BLOCKS = 6;
@ -89,6 +91,8 @@ union CommandWord
BitField<u32, u16, 0, 16> parameter_word_count;
};
} // namespace
static bool HasPendingBlockCopyOut();
static void SoftReset();