Changed output of GetCurrentRadix to match the variable type of m_radix (#1416)

Co-authored-by: PokeCodec <67983839+PokeCodec@users.noreply.github.com>
This commit is contained in:
Seija
2020-10-28 17:40:57 -04:00
committed by GitHub
parent dd9d948408
commit 13d8b04d8d
3 changed files with 3 additions and 3 deletions

View File

@@ -1045,7 +1045,7 @@ bool CCalcEngine::IsCurrentTooBigForTrig()
return m_currentVal >= m_maxTrigonometricNum;
}
int CCalcEngine::GetCurrentRadix()
uint32_t CCalcEngine::GetCurrentRadix()
{
return m_radix;
}