1
0
Fork 0

BRIDGE: no long do GuiUpdatePatches in a separate thread

This commit is contained in:
Mr. eXoDia 2014-07-06 23:35:30 +02:00
parent c2a2177bd1
commit e4101a0d79
1 changed files with 1 additions and 7 deletions

View File

@ -990,15 +990,9 @@ BRIDGE_IMPEXP void GuiRepaintTableView()
_gui_sendmessage(GUI_REPAINT_TABLE_VIEW, 0, 0);
}
static DWORD WINAPI updatePatchesThread(void* a)
{
_gui_sendmessage(GUI_UPDATE_PATCHES, 0, 0);
return 0;
}
BRIDGE_IMPEXP void GuiUpdatePatches()
{
CloseHandle(CreateThread(0, 0, updatePatchesThread, 0, 0, 0));
_gui_sendmessage(GUI_UPDATE_PATCHES, 0, 0);
}
//Main