mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-22 04:24:44 +00:00
Update game_list_frame.cpp
fixed snd0path
This commit is contained in:
parent
703525083a
commit
4cd4e7131a
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ void GameListFrame::PlayBackgroundMusic(QTableWidgetItem* item) {
|
|||
BackgroundMusicPlayer::getInstance().stopMusic();
|
||||
return;
|
||||
}
|
||||
const auto snd0path = QString::fromStdString(m_game_info->m_games[item->row()].snd0_path);
|
||||
QString snd0path = Common::FS::PathToQString(m_game_info->m_games[item->row()].snd0_path);
|
||||
BackgroundMusicPlayer::getInstance().playMusic(snd0path);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue