2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 22:27:43 +00:00

Various fixes and improvements to CVars

This commit is contained in:
2019-09-29 05:44:01 -07:00
parent e80d0319fa
commit 7fd54effc9
6 changed files with 462 additions and 291 deletions

View File

@@ -174,12 +174,12 @@ void Console::init(boo::IWindow* window) {
void Console::proc() {
if (m_conHeight->isModified()) {
m_cachedConHeight = m_conHeight->toFloat();
m_cachedConHeight = m_conHeight->toReal();
m_conHeight->clearModified();
}
if (m_conSpeed->isModified()) {
m_cachedConSpeed = m_conSpeed->toFloat();
m_cachedConSpeed = m_conSpeed->toReal();
m_conSpeed->clearModified();
}