Merge pull request #9277 from bd339/iss9266

Add null-check to get_normal_frame
This commit is contained in:
Thomas Herzog 2017-06-20 00:44:01 +02:00 committed by GitHub
commit f919be936b

View file

@ -99,7 +99,7 @@ public:
const Map<StringName, Anim>::Element *EN = animations.find(E->get().normal_name);
if (p_idx >= EN->get().frames.size())
if (!EN || p_idx >= EN->get().frames.size())
return Ref<Texture>();
return EN->get().frames[p_idx];