Still _more_ CVideo fixes

This commit is contained in:
Gregory A Lundberg 2017-11-20 10:23:33 -06:00
parent 4232788579
commit 28ccc95d6f
3 changed files with 3 additions and 3 deletions

View file

@ -548,7 +548,7 @@ struct dialog_tester<addon_manager>
}
addon_manager* create()
{
addons_client client(video, "localhost:15999");
addons_client client("localhost:15999");
return new addon_manager(client);
}
};

View file

@ -54,7 +54,7 @@ struct mp_connect_fixture {
config_manager()
{
config_manager.reset(new game_config_manager(cmdline_opts, test_utils::get_fake_display(1000,1000).video(), false));
config_manager.reset(new game_config_manager(cmdline_opts, false));
config_manager->init_game_config(game_config_manager::NO_FORCE_RELOAD);
state.reset(new saved_game());

View file

@ -68,7 +68,7 @@ namespace test_utils {
dummy_board_(std::make_shared<terrain_type_data>(dummy_cfg_), dummy_cfg2_),
dummy_tod_(dummy_cfg_),
main_event_context_(),
disp_(dummy_board_, video_, std::shared_ptr<wb::manager> (), dummy_reports, dummy_tod_,
disp_(dummy_board_, std::shared_ptr<wb::manager> (), dummy_reports, dummy_tod_,
dummy_cfg_, dummy_cfg_)
{
}