by Edward-san » Fri Apr 29, 2016 5:25 am
From src/g_shared/a_quake.cpp:
Code: Select all
<< m_Falloff << m_Highpoint << m_MiniCount;
<< m_RollIntensity << m_RollWave;
the semicolon near 'm_MiniCount' was not removed, making the compilation fail:
Code: Select all
/home/edward-san/zdoom/trunk/src/g_shared/a_quake.cpp:75:3: error: expected
expression
<< m_RollIntensity << m_RollWave;
^
From src/g_shared/a_quake.cpp:
[code]
<< m_Falloff << m_Highpoint << m_MiniCount;
<< m_RollIntensity << m_RollWave;
[/code]
the semicolon near 'm_MiniCount' was not removed, making the compilation fail:
[code]
/home/edward-san/zdoom/trunk/src/g_shared/a_quake.cpp:75:3: error: expected
expression
<< m_RollIntensity << m_RollWave;
^
[/code]