SCUMM: Attempt at fixing #14616

(FT: Crash with Assertion Fail when riding the
bike for the first time).

This was suggested by PushmePullyu; athrxx
will probably take a better look when he gets back.
This commit is contained in:
AndywinXp 2023-09-13 22:36:53 +02:00
parent db03ce28cf
commit f0094e713b

View File

@ -48,6 +48,9 @@ public:
//void animateLimb(int limb, int f);
bool hasManyDirections(int id) override {
if (id == 0)
return false;
loadCostume(id);
return hasManyDirections();
}