(svn r2248) - Fix (regression): fix crashing of game when joining a dedicated server (only reset _thd.pos, not the whole structure; as done in revision 2241 to fix another crash)

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
Darkvater 19 years ago
parent 8f6b3154e5
commit 63784c5b5a

@ -716,7 +716,8 @@ void ResetWindowSystem(void)
{
UnInitWindowSystem();
InitWindowSystem();
memset(&_thd, 0, sizeof(TileHighlightData));
_thd.pos.x = 0;
_thd.pos.y = 0;
}
static void DecreaseWindowCounters(void)

Loading…
Cancel
Save