Merge pull request #1875 from jbd1986/fix-rdp-file-fullscreen

Reading RDP File: changed fullscreen constants to reflect the current states from Technet
This commit is contained in:
Marc-André Moreau 2014-06-04 12:02:30 -04:00
commit 001ff64840

View File

@ -802,12 +802,12 @@ BOOL freerdp_client_populate_settings_from_rdp_file(rdpFile* file, rdpSettings*
*
* Values:
*
* 0: The remote session will appear in a window.
* 1: The remote session will appear full screen.
* 1: The remote session will appear in a window.
* 2: The remote session will appear full screen.
*/
freerdp_set_param_bool(settings, FreeRDP_Fullscreen,
(file->ScreenModeId == 1) ? TRUE : FALSE);
(file->ScreenModeId == 2) ? TRUE : FALSE);
}
if (~((size_t) file->SmartSizing))