Handles moving the game window to an external monitor.
| 456 | /// Handles moving the game window to an external monitor. |
| 457 | /// </summary> |
| 458 | void HandleExternalMonitor(GameLoopState& state) |
| 459 | { |
| 460 | if (!state.movedToExternalDisplay && Settings::ReturnSettingValue("SecondaryMonitor") == "on") { |
| 461 | LaunchOnExternalMonitor::SendRocksmithToScreen( |
| 462 | Settings::GetModSetting("SecondaryMonitorXPosition"), |
| 463 | Settings::GetModSetting("SecondaryMonitorYPosition") |
| 464 | ); |
| 465 | state.movedToExternalDisplay = true; |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | /// <summary> |
| 470 | /// Manages microphone volume override settings. |
no test coverage detected