mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
dual head support for Qt reworked / --fullscreen for Qt / fullscreen top most
This commit is contained in:
parent
2bc6864222
commit
3db5420beb
@ -39,8 +39,8 @@ int getDisplayNumber(void)
|
||||
// setup default: primary display
|
||||
displayNumber = 0;
|
||||
|
||||
//check if larger equal -1 (= default screen) and less then display numbers
|
||||
if ((tempValue >=-1) && (tempValue < getNumVideoDisplays()))
|
||||
//check if larger equal 0 and less then display numbers
|
||||
if ((tempValue >=0) && (tempValue < getNumVideoDisplays()))
|
||||
{
|
||||
// check passed
|
||||
displayNumber = tempValue;
|
||||
|
Loading…
Reference in New Issue
Block a user