Commit f623cb9 1 parent b7c3d26 commit f623cb9 Copy full SHA for f623cb9
File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public class Launcher
19
19
20
20
// this seems necessary on Harvey's cab when launching from the TouchPlay
21
21
// frontend, however wasn't necessary on my dev PC
22
- private const bool kSendFinalF3ToForceFullScreenMax = true ;
22
+ private const bool kSendFinalShiftF3ToForceFullScreenMaxStretch = true ;
23
23
24
24
private string [ ] _args = null ;
25
25
private string _gamFilePath = null ;
@@ -62,9 +62,11 @@ public bool Launch()
62
62
63
63
SendKeyPresses ( kKeypressInterval , kKeypressesDuration ) ;
64
64
65
- if ( kSendFinalF3ToForceFullScreenMax )
65
+ if ( kSendFinalShiftF3ToForceFullScreenMaxStretch )
66
66
{
67
- _inputSimulator . Keyboard . KeyPress ( WindowsInput . Native . VirtualKeyCode . F3 ) ;
67
+ _inputSimulator . Keyboard . ModifiedKeyStroke (
68
+ WindowsInput . Native . VirtualKeyCode . SHIFT ,
69
+ WindowsInput . Native . VirtualKeyCode . F3 ) ;
68
70
}
69
71
70
72
AwaitMFMEExeProcessExit ( ) ;
You can’t perform that action at this time.
0 commit comments