mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
dual head support for Qt reworked / --fullscreen for Qt / fullscreen top most
This commit is contained in:
parent
2bc6864222
commit
3db5420beb
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ int getDisplayNumber(void)
|
||||||
// setup default: primary display
|
// setup default: primary display
|
||||||
displayNumber = 0;
|
displayNumber = 0;
|
||||||
|
|
||||||
//check if larger equal -1 (= default screen) and less then display numbers
|
//check if larger equal 0 and less then display numbers
|
||||||
if ((tempValue >=-1) && (tempValue < getNumVideoDisplays()))
|
if ((tempValue >=0) && (tempValue < getNumVideoDisplays()))
|
||||||
{
|
{
|
||||||
// check passed
|
// check passed
|
||||||
displayNumber = tempValue;
|
displayNumber = tempValue;
|
||||||
|
|
Loading…
Add table
Reference in a new issue