mirror of
https://github.com/Ylianst/MeshAgent
synced 2025-12-15 07:43:50 +00:00
1. Fixed edge case bug, where TLS packet was corrupt
2. Added compile switch for KVM ALL TILES 3. Added compile switch for Debug fragmentation of Sends 4. Fixed compiler warnings 5. Added comments to makefile
This commit is contained in:
@@ -899,9 +899,14 @@ void* kvm_server_mainloop(void* parm)
|
||||
}
|
||||
ILibQueue_UnLock(g_messageQ);
|
||||
|
||||
for (r = 0; r < TILE_HEIGHT_COUNT; r++) {
|
||||
for (c = 0; c < TILE_WIDTH_COUNT; c++) {
|
||||
for (r = 0; r < TILE_HEIGHT_COUNT; r++)
|
||||
{
|
||||
for (c = 0; c < TILE_WIDTH_COUNT; c++)
|
||||
{
|
||||
g_tileInfo[r][c].flag = TILE_TODO;
|
||||
#ifdef KVM_ALL_TILES
|
||||
g_tileInfo[r][c].crc = 0xFF;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
//fprintf(logFile, "Before CheckDesktopSwitch.\n"); fflush(logFile);
|
||||
|
||||
Reference in New Issue
Block a user