diff --git a/specter/include/Specter/View.hpp b/specter/include/Specter/View.hpp index 517f181c5..112b6eb00 100644 --- a/specter/include/Specter/View.hpp +++ b/specter/include/Specter/View.hpp @@ -159,7 +159,7 @@ public: void init(boo::GLDataFactory* factory, const IThemeData& theme); #if _WIN32 - void init(boo::ID3DDataFactory* factory, const ThemeData& theme); + void init(boo::ID3DDataFactory* factory, const IThemeData& theme); #elif BOO_HAS_METAL void init(boo::MetalDataFactory* factory, const IThemeData& theme); #endif diff --git a/specter/lib/View.cpp b/specter/lib/View.cpp index db5c007be..9646e5c83 100644 --- a/specter/lib/View.cpp +++ b/specter/lib/View.cpp @@ -83,7 +83,7 @@ void View::Resources::init(boo::GLDataFactory* factory, const IThemeData& theme) #if _WIN32 -void View::Resources::init(boo::ID3DDataFactory* factory, const ThemeData& theme) +void View::Resources::init(boo::ID3DDataFactory* factory, const IThemeData& theme) { static const char* SolidVS = "struct VertData\n"