Some new info from that one helping, take into consideration that I am not sure always of his answers, so I might be giving slightly erroneous data to you here. But..
First of all, this FIRST one fails:
Code: Select all
@DISPLAY {Width=1920, Height=1080, Title = "AI Kills All Humans", Mode="ask", monitor=1, Sizeable=True, ScaleMode = #SCALEMODE_AUTO, Fitscale=True, borderless=True}
This SECOND one seems to work otherwise, except that it doesn't show on taskbar:
Code: Select all
@DISPLAY {Width=1920, Height=1080, Title = "AI Kills All Humans", Mode="ask", monitor=1}
Also, Adding any of these alone to that one works:
Sizeable=True
ScaleMode = #SCALEMODE_AUTO
Fitscale=True
borderless=True
Making it seem like it is a conflict with two or more of these at the same time making the bug happen.
He commented that this THIRD one didn't work:
Code: Select all
@DISPLAY {Width=1920, Height=1080, Title = "AI Kills All Humans", Mode="ask", monitor=1, Sizeable=True, ScaleMode = #SCALEMODE_AUTO, Fitscale=True}}
Here is what he commented about choosing different responses to the "ask" part of the THIRD one:
fullscreen - causes a black screen, game is unresponsive and one full thread usage, can't even close it with "esc", killing it takes a little while (in general very bad),
windowed - game starts, shows on taskbar, but is again invisible, gotta do the "shift, windows" trick,
resolution - same results as fullscreen
However, I am not sure what did he mean exactly by this, since he didn't say if the ask part showed normally or not, since to my understanding even the ask part is hidden. Going to ask this.
And while he didn't say it directly, I assume he meant that this FOURTH one did work still:
Code: Select all
@DISPLAY {Width=1920, Height=1080, Title = "AI Kills All Humans", Mode="ask", monitor=1, Sizeable=True, ScaleMode = #SCALEMODE_AUTO}
Which would mean that adding Fitscale is the point when it failed, and would therefore be colliding with one of the others in this.