mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
cellCamera: fix compilation on linux
This commit is contained in:
parent
60d35e17ac
commit
e67cf68321
5 changed files with 17 additions and 15 deletions
|
|
@ -311,7 +311,7 @@ void qt_camera_handler::update_camera_settings()
|
|||
}
|
||||
for (const QSize& resolution : resolutions)
|
||||
{
|
||||
if (m_width == resolution.width() && m_height == resolution.height())
|
||||
if (static_cast<int>(m_width) == resolution.width() && static_cast<int>(m_height) == resolution.height())
|
||||
{
|
||||
settings.setResolution(resolution.width(), resolution.height());
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue