Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ namespace rsx

if (const std::string icon1_path = game_dir + "/ICON1.PAM"; fs::is_file(icon1_path))
{
m_video = std::make_unique<video_view>(icon1_path, "", info.icon_path);
const std::string snd0_path = game_dir + "/SND0.AT3";
Comment thread
BeezBumba marked this conversation as resolved.
Outdated
m_video = std::make_unique<video_view>(icon1_path, snd0_path, info.icon_path);
m_video->set_pos(m_icon.x, m_icon.y);
m_video->set_size(m_icon.w, m_icon.h);
m_video->set_active(true);
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/rpcs3qt/qt_video_source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ void qt_video_source_wrapper::set_active(bool active)
Emu.CallFromMainThread([this, active]()
{
ensure(m_qt_video_source);
m_qt_video_source->set_active(true);
m_qt_video_source->set_active(active);
});
}

Expand Down
Loading