# HG changeset patch # User Darkvater # Date 1138126084 0 # Node ID c307d8f60e4816633343ced8fbea54c6e06bb58c # Parent f8710fcb8efca4f27f64ca9aba3894cd8239ea10 (svn r3425) - Fix: Followup to r3421. Correctly reset the TileHighLightData structure to prevent crashes in all the other cases where it is not guarded against sufficiently diff -r f8710fcb8efc -r c307d8f60e48 window.c --- a/window.c Tue Jan 24 09:33:51 2006 +0000 +++ b/window.c Tue Jan 24 18:08:04 2006 +0000 @@ -699,6 +699,8 @@ InitWindowSystem(); _thd.pos.x = 0; _thd.pos.y = 0; + _thd.new_pos.x = 0; + _thd.new_pos.y = 0; } static void DecreaseWindowCounters(void)