Browse Source

Fix for a guaranteed infinite recursive call bug

(cherry picked from commit 749ee03661)
rarified/huru-merge-work/code-cleanup
Zrax 13 years ago committed by rarified
parent
commit
d05bc8e0c1
  1. 2
      Sources/Plasma/PubUtilLib/plSurface/plLayerMultiply.cpp

2
Sources/Plasma/PubUtilLib/plSurface/plLayerMultiply.cpp

@ -150,7 +150,7 @@ UInt32 plLayerMultiply::Eval(double wSecs, UInt32 frame, UInt32 ignore)
hsBool plLayerMultiply::MsgReceive(plMessage* msg)
{
return plLayerMultiply::MsgReceive(msg);
return plLayerInterface::MsgReceive(msg);
}
void plLayerMultiply::SetPreshadeColor(const hsColorRGBA& col)

Loading…
Cancel
Save