mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-05 15:48:39 +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();
|
BackgroundMusicPlayer::getInstance().stopMusic();
|
||||||
return;
|
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);
|
BackgroundMusicPlayer::getInstance().playMusic(snd0path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue