From ea287136cf89ccbe1b6d939bc420050b6efc0044 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 5 Apr 2022 02:08:20 -0400 Subject: [PATCH] Hot anim fix --- voxygen/anim/src/character/combomelee.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/voxygen/anim/src/character/combomelee.rs b/voxygen/anim/src/character/combomelee.rs index a82f5abd77..9059f93708 100644 --- a/voxygen/anim/src/character/combomelee.rs +++ b/voxygen/anim/src/character/combomelee.rs @@ -21,9 +21,9 @@ impl Animation for ComboAnimation { type Skeleton = CharacterSkeleton; #[cfg(feature = "use-dyn-lib")] - const UPDATE_FN: &'static [u8] = b"character_alpha\0"; + const UPDATE_FN: &'static [u8] = b"character_combo\0"; - #[cfg_attr(feature = "be-dyn-lib", export_name = "character_alpha")] + #[cfg_attr(feature = "be-dyn-lib", export_name = "character_combo")] fn update_skeleton_inner<'a>( skeleton: &Self::Skeleton, (hands, stage_section, ability_info, strike): Self::Dependency<'a>,