mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
ok
This commit is contained in:
parent
5b382d6ede
commit
177134e262
1 changed files with 6 additions and 6 deletions
12
src/m_menu.c
12
src/m_menu.c
|
|
@ -10692,19 +10692,19 @@ static void
|
|||
Check_new_version_thread (int *id)
|
||||
{
|
||||
int hosting;
|
||||
int ok;
|
||||
int okay;
|
||||
|
||||
ok = 0;
|
||||
okay = 0;
|
||||
|
||||
if (M_CheckMODVersion(*id))
|
||||
{
|
||||
I_lock_mutex(&ms_QueryId_mutex);
|
||||
{
|
||||
ok = ( *id == ms_QueryId );
|
||||
okay = ( *id == ms_QueryId );
|
||||
}
|
||||
I_unlock_mutex(ms_QueryId_mutex);
|
||||
|
||||
if (ok)
|
||||
if (okay)
|
||||
{
|
||||
I_lock_mutex(&m_menu_mutex);
|
||||
{
|
||||
|
|
@ -10720,12 +10720,12 @@ Check_new_version_thread (int *id)
|
|||
{
|
||||
I_lock_mutex(&ms_QueryId_mutex);
|
||||
{
|
||||
ok = ( *id == ms_QueryId );
|
||||
okay = ( *id == ms_QueryId );
|
||||
}
|
||||
I_unlock_mutex(ms_QueryId_mutex);
|
||||
}
|
||||
|
||||
if (ok)
|
||||
if (okay)
|
||||
{
|
||||
I_lock_mutex(&m_menu_mutex);
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue