Bootcamp not mapping keys properly.

The Windows Keyboard layout tool shows the ~ key as VK_OEM_3, but when it reaches our app, we get VK_OEM_5. And same with the '" and | keys. These all arrive incorrectly as if something in software is remapping them. This is on an Intel MBP 16" 2019 w/Windows 10 Pro latest. These forums don't even have a Bootcamp channel.

    //  hack for bootcamp
	if ( button == VK_OEM_3 )
		button = VK_OEM_7;
	else if ( button == VK_OEM_5 )
		button = VK_OEM_3;
	else if ( button == VK_OEM_7 )
		button = VK_OEM_5;