SPU: Use "ticks" instead of "sample" in variable names

This commit is contained in:
Connor McLaughlin
2020-03-14 15:23:20 +10:00
parent 90d6babfb0
commit d42f155512
2 changed files with 50 additions and 44 deletions

View File

@ -274,13 +274,15 @@ private:
void ReadADPCMBlock(u16 address, ADPCMBlock* block);
std::tuple<s32, s32> SampleVoice(u32 voice_index);
void VoiceKeyOn(u32 voice_index);
void VoiceKeyOff(u32 voice_index);
void Execute(TickCount ticks);
void UpdateEventInterval();
System* m_system = nullptr;
DMA* m_dma = nullptr;
InterruptController* m_interrupt_controller = nullptr;
std::unique_ptr<TimingEvent> m_sample_event;
std::unique_ptr<TimingEvent> m_tick_event;
SPUCNT m_SPUCNT = {};
SPUSTAT m_SPUSTAT = {};