Removing unused variables

This commit is contained in:
Waldemar Pawlaszek 2022-02-22 21:34:56 +01:00
parent d07f28aec5
commit 2e45b3066a
1 changed files with 1 additions and 2 deletions

View File

@ -77,7 +77,7 @@ int32_t clamp( int32_t v, int32_t lo, int32_t hi )
class Timer
{
public:
Timer() : mValueUpdateTick{}, mAudShift {}, mCtrlA{ -1 }, mEnableReload{}, mEnableCount{}, mTimerDone{}, mBackup{ 0 }, mValue{ 0 }
Timer() : mValueUpdateTick{}, mAudShift {}, mEnableReload{}, mEnableCount{}, mTimerDone{}, mBackup{ 0 }, mValue{ 0 }
{
}
@ -180,7 +180,6 @@ private:
private:
int64_t mValueUpdateTick;
int mAudShift;
int mCtrlA;
bool mEnableReload;
bool mEnableCount;
bool mTimerDone;