1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

decimate: fix invalid setter

This commit is contained in:
Steffen Vogel 2019-04-06 18:20:55 +02:00
parent b3e80b0299
commit b465d996b7

View file

@ -40,9 +40,9 @@ protected:
public:
using Hook::Hook;
void setRatio(int ratio)
void setRatio(int r)
{
ratio = ratio;
ratio = r;
}
virtual void start();