Fixed more *nix compile issues

This commit is contained in:
2023-02-03 06:23:21 -08:00
parent 7db25fc659
commit 6e9a54b4f2
7 changed files with 15 additions and 14 deletions

View File

@ -23,7 +23,7 @@ namespace Dawn {
}
void onValueModified() override {
SimpleAnimation::onValueModified();
SimpleAnimation<T>::onValueModified();
this->invoke();
}
@ -32,7 +32,7 @@ namespace Dawn {
* Construct a new Simple Function Animation object
*/
SimpleCallbackAnimation() :
SimpleAnimation(&value)
SimpleAnimation<T>(&value)
{
}