Tabs instead of spaces

This commit is contained in:
Melefo
2021-02-05 14:48:02 +01:00
parent 11ab2125b8
commit 96fe1a5e33
8 changed files with 854 additions and 854 deletions
+12 -12
View File
@@ -6,17 +6,17 @@
namespace ComSquare::APU::DSP
{
void DSP::timerTick()
{
if (!this->_timer.counter)
this->_timer.counter = 0x7800;
this->_timer.counter -= 1;
}
void DSP::timerTick()
{
if (!this->_timer.counter)
this->_timer.counter = 0x7800;
this->_timer.counter -= 1;
}
bool DSP::timerPoll(uint32_t rate)
{
if (!rate)
return false;
return (this->_timer.counter + this->_counterOffset[rate]) % this->_rateModulus[rate] == 0;
}
bool DSP::timerPoll(uint32_t rate)
{
if (!rate)
return false;
return (this->_timer.counter + this->_counterOffset[rate]) % this->_rateModulus[rate] == 0;
}
}