From d05bc8e0c114323e0ebdbd978f31230ce8d3f9bb Mon Sep 17 00:00:00 2001 From: Zrax Date: Thu, 7 Apr 2011 15:10:02 -0700 Subject: [PATCH] Fix for a guaranteed infinite recursive call bug (cherry picked from commit 749ee03661900a1c44da17969abab08da25e4c56) --- Sources/Plasma/PubUtilLib/plSurface/plLayerMultiply.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/PubUtilLib/plSurface/plLayerMultiply.cpp b/Sources/Plasma/PubUtilLib/plSurface/plLayerMultiply.cpp index bf903d59..3a6652d1 100644 --- a/Sources/Plasma/PubUtilLib/plSurface/plLayerMultiply.cpp +++ b/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)