Robert Bartgis - 2019-01-04

Yes, you're doing something wrong. The correct syntax is -fullscreen=yes

Yes, that's uninitutive. The documentation would seem to be rather lacking. I had to look in the source code.

The way the code processes the -fullscreen option in the source code makes perfect sense . . . its behavior just doesn't make sense to end users. Fortunately, it would be a trivial fix to make. Unfortunately. I'm not associated with this project, so I can't make the change.

The change, if you're wondering, would be to change, in tvnviewer/ViewerCmdLine.cpp, line 338 from bool isFullScreen = false; to bool isFullScreen = true; and (for completeness) on line 342 add else if (m_options[FULL_SCREEN] == NO) { isFullScreen = false; }.