Kaydet (Commit) 63d650b4 authored tarafından Caolán McNamara's avatar Caolán McNamara

relax assert, 0 is fine

Change-Id: I176a79bce85fa81310a53fcfecc6e0bc63f0ae18
üst 48c15285
...@@ -291,7 +291,7 @@ IMPL_LINK( AnimationWindow, ClickPlayHdl, void *, p ) ...@@ -291,7 +291,7 @@ IMPL_LINK( AnimationWindow, ClickPlayHdl, void *, p )
while( bCount && bMovie ) while( bCount && bMovie )
{ {
// make list and view consistent // make list and view consistent
assert(0 < i && i < m_FrameList.size()); assert(i < m_FrameList.size());
m_nCurrentFrame = i; m_nCurrentFrame = i;
UpdateControl(bDisableCtrls); UpdateControl(bDisableCtrls);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment