mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
DSPCore: Make IRAM CRC and step counter private
We can construct an API around these two members to allow them to be private.
This commit is contained in:
@ -77,7 +77,7 @@ void CodeLoaded(DSPCore& dsp, const u8* ptr, size_t size)
|
||||
{
|
||||
auto& state = dsp.DSPState();
|
||||
const u32 iram_crc = Common::HashEctor(ptr, size);
|
||||
state.iram_crc = iram_crc;
|
||||
state.SetIRAMCRC(iram_crc);
|
||||
|
||||
if (SConfig::GetInstance().m_DumpUCode)
|
||||
{
|
||||
|
Reference in New Issue
Block a user