limit number of probes

This commit is contained in:
PavelSindler 2019-03-05 22:43:44 +01:00
parent 7c187541e1
commit 5766a5537e

View File

@ -4392,7 +4392,7 @@ if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE))
if (code_seen('R')) {
nProbeRetry = code_value_uint8();
if (nProbeRetry > 10) {
nProbeRetry = 3;
nProbeRetry = 10;
}
}