Fix attack removing crash if no attacks.
This commit is contained in:
@@ -8,6 +8,11 @@ ________________________________________________________________________________
|
|||||||
StepMania 5.0 ????????? | 20110???
|
StepMania 5.0 ????????? | 20110???
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
2011/07/03
|
||||||
|
----------
|
||||||
|
* [ScreenEdit] Fix a crash if one tries to remove an attack that doesn't
|
||||||
|
exist at that time. [Wolfman2000]
|
||||||
|
|
||||||
================================================================================
|
================================================================================
|
||||||
StepMania 5.0 Preview 2 | 20110703
|
StepMania 5.0 Preview 2 | 20110703
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|||||||
+2
-2
@@ -3126,8 +3126,8 @@ void ScreenEdit::HandleScreenMessage( const ScreenMessage SM )
|
|||||||
|
|
||||||
if (ScreenMiniMenu::s_iLastRowCode == ScreenEdit::remove )
|
if (ScreenMiniMenu::s_iLastRowCode == ScreenEdit::remove )
|
||||||
{
|
{
|
||||||
ASSERT(iAttack >= 0);
|
if (iAttack > 0)
|
||||||
attacks.erase(attacks.begin() + iAttack);
|
attacks.erase(attacks.begin() + iAttack);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user