Fix lack of video when starting a session on Windows without wiggling mouse

This commit is contained in:
loki
2020-03-20 15:53:19 +01:00
parent ad87463784
commit 68a7cece49
2 changed files with 37 additions and 19 deletions

View File

@@ -730,8 +730,8 @@ void start(std::shared_ptr<safe::signal_t> shutdown_event) {
auto dir = std::filesystem::temp_directory_path() / "Sushine"sv;
config::nvhttp.cert = dir / ("cert-"s + unique_id);
config::nvhttp.pkey = dir / ("pkey-"s + unique_id);
config::nvhttp.cert = (dir / ("cert-"s + unique_id)).string();
config::nvhttp.pkey = (dir / ("pkey-"s + unique_id)).string();
}