1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-15 14:42:27 +00:00

Change timeout message to be less misleading.

This commit is contained in:
Themaister 2011-11-16 22:30:57 +01:00
parent 4fa27a5f0f
commit bf5db10459

@ -489,8 +489,8 @@ static int poll_input(netplay_t *handle, bool block)
if (block) if (block)
{ {
SSNES_LOG("Network lag of %d ms, resending packet... Count %u of %d ...\n", SSNES_LOG("Network is stalling, resending packet... Count %u of %d ...\n",
RETRY_MS, handle->timeout_cnt, MAX_RETRIES); handle->timeout_cnt, MAX_RETRIES);
} }
} while ((handle->timeout_cnt < MAX_RETRIES) && block); } while ((handle->timeout_cnt < MAX_RETRIES) && block);