mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 14:59:03 +00:00
Fixed: If frequency is 0, use the first one in list
This commit is contained in:
parent
ca3e6f41ca
commit
e67f65eb89
1 changed files with 2 additions and 1 deletions
|
@ -1478,7 +1478,8 @@ bool getRyzomModes(std::vector<NL3D::UDriver::CMode> &videoModes, std::vector<st
|
|||
{
|
||||
uint freq = videoModes[i].Frequency;
|
||||
|
||||
if (ClientCfg.Frequency > 0 && freq == ClientCfg.Frequency)
|
||||
// if frequency is 0, take the first one else use the exact one
|
||||
if (nFoundStringFreq == -1 && ((ClientCfg.Frequency == 0) || (freq == ClientCfg.Frequency)))
|
||||
{
|
||||
nFoundStringFreq = stringFreqList.size();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue