Same here.
The wallpaper stays visible when connecting.
Also... the red frame on the client can't be removed.
I tried adding
to SC_20.ini but that didn't work.
Did you ever find a solution?
Edit:
O, that's unfortunate... It seems the SC doesn't read the [admin] section at all. So WallPaper and Frame get their default values.
And the default value for RemoveWallPaper has changed to FALSE
From UltraVNC/winvnc/winvnc/SettingsManager.cpp
Code: Select all
void SettingsManager::load()
{
#ifndef SC_20
<SNIP>
m_pref_RemoveWallpaper = myIniFile.ReadInt("admin", "RemoveWallpaper", m_pref_RemoveWallpaper);
<SNIP>
m_pref_Frame = myIniFile.ReadInt("admin", "Frame", m_pref_Frame);
<SNIP>
#endif // SC_20
m_pref_TurboMode = myIniFile.ReadInt("poll", "TurboMode", m_pref_TurboMode);
m_pref_PollUnderCursor = myIniFile.ReadInt("poll", "PollUnderCursor", m_pref_PollUnderCursor);
m_pref_PollForeground = myIniFile.ReadInt("poll", "PollForeground", m_pref_PollForeground);
m_pref_PollFullScreen = myIniFile.ReadInt("poll", "PollFullScreen", m_pref_PollFullScreen);
m_pref_PollConsoleOnly = myIniFile.ReadInt("poll", "OnlyPollConsole", m_pref_PollConsoleOnly);
m_pref_PollOnEventOnly = myIniFile.ReadInt("poll", "OnlyPollOnEvent", m_pref_PollOnEventOnly);
m_pref_MaxCpu = myIniFile.ReadInt("poll", "MaxCpu2", m_pref_MaxCpu);
if (m_pref_MaxCpu == 0)
m_pref_MaxCpu = 100;
m_pref_MaxFPS = myIniFile.ReadInt("poll", "MaxFPS", m_pref_MaxFPS);
m_pref_Driver = myIniFile.ReadInt("poll", "EnableDriver", m_pref_Driver);
if (m_pref_Driver)
m_pref_Driver = CheckVideoDriver(0);
m_pref_Hook = myIniFile.ReadInt("poll", "EnableHook", m_pref_Hook);
m_pref_Virtual = myIniFile.ReadInt("poll", "EnableVirtual", m_pref_Virtual);
m_pref_autocapt = myIniFile.ReadInt("poll", "autocapt", m_pref_autocapt);
}