diff options
Diffstat (limited to 'src/osd/modules/render/bgfx/chainentryreader.h')
-rw-r--r-- | src/osd/modules/render/bgfx/chainentryreader.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/osd/modules/render/bgfx/chainentryreader.h b/src/osd/modules/render/bgfx/chainentryreader.h index 267fe63948e..0f604e9a71f 100644 --- a/src/osd/modules/render/bgfx/chainentryreader.h +++ b/src/osd/modules/render/bgfx/chainentryreader.h @@ -15,18 +15,15 @@ #include "statereader.h" -class osd_options; class bgfx_chain_entry; -class texture_manager; -class target_manager; -class effect_manager; class bgfx_slider; class bgfx_parameter; +class chain_manager; class chain_entry_reader : public state_reader { public: - static bgfx_chain_entry* read_from_value(const Value& value, std::string prefix, osd_options& options, texture_manager& textures, target_manager& targets, effect_manager& effects, std::map<std::string, bgfx_slider*>& sliders, std::map<std::string, bgfx_parameter*>& params, uint32_t screen_index); + static bgfx_chain_entry* read_from_value(const Value& value, std::string prefix, chain_manager& chains, std::map<std::string, bgfx_slider*>& sliders, std::map<std::string, bgfx_parameter*>& params, uint32_t screen_index); private: static bool validate_parameters(const Value& value, std::string prefix); |