mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-04 17:00:51 +00:00
fix a bug that prevented fade-out on death anims from working properly
This commit is contained in:
parent
714732a2d3
commit
4a27d1d3b8
@ -11,6 +11,7 @@ Version 1.3.1+svn:
|
||||
lagging
|
||||
* improved the look of the main menu and tips of the day boxes in the title
|
||||
screen
|
||||
* bugfix: units will now fade out properly at the end of death animations
|
||||
* language and i18n:
|
||||
* updated translations: Bulgarian, Czech, Danish, Dutch, German, Italian,
|
||||
Norwegian, Portuguese (Brazil)
|
||||
|
@ -28,6 +28,8 @@ Version 1.3.1+svn:
|
||||
* Miscellaneous bugfixes
|
||||
* Fixed a bug that caused the killing unit's death sound to play instead of
|
||||
the death sound of the killed unit.
|
||||
* Fixed a bug that prevented dead units from fading out at the end of their
|
||||
death animation
|
||||
|
||||
Version 1.3.1:
|
||||
* Campaigns
|
||||
|
@ -212,7 +212,7 @@ const int animated<T,T_void_value>::get_current_frame_time() const
|
||||
{
|
||||
if(frames_.empty() )
|
||||
return 0;
|
||||
return maximum<int>(get_current_frame_begin_time(),get_animation_time() - get_current_frame_begin_time());
|
||||
return maximum<int>(0,get_animation_time() - get_current_frame_begin_time());
|
||||
}
|
||||
|
||||
template<typename T, typename T_void_value>
|
||||
|
Loading…
x
Reference in New Issue
Block a user