From 5e6dc143f058e922382291853f4125d5485895f6 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Thu, 2 Feb 2006 11:13:38 +0000 Subject: [PATCH] Harmless original c&p bug fixed. See http://uqm.stack.nl/forum/index.php?topic=2741.0 git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2244 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/ChangeLog | 1 + sc2/src/sc2code/planets/report.c | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sc2/ChangeLog b/sc2/ChangeLog index dab94bbaa..1efb0ef70 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,5 @@ Changes towards version 0.5: +- Innocent origiginal c&p bug fixed, from bpoint. - Handle relative dirs in -C correctly, from Jan Lönnberg (part of bug #738). - Internationalization fixes: moved many hardcoded English strings into string resource file starcon.txt (bug #778), from Andrew Zabolotny diff --git a/sc2/src/sc2code/planets/report.c b/sc2/src/sc2code/planets/report.c index 6cb7a7d6d..034b5a697 100644 --- a/sc2/src/sc2code/planets/report.c +++ b/sc2/src/sc2code/planets/report.c @@ -254,8 +254,10 @@ DoDiscoveryReport (SOUND ReadOutSounds) if (pMenuState) { old_curs = pMenuState->flash_rect0.corner; - pMenuState->flash_rect0.corner.x = /* disable cursor */ - pMenuState->flash_rect0.corner.x = -1000; + + /* Disable cursor: */ + pMenuState->flash_rect0.corner.x = -1000; + pMenuState->flash_rect0.corner.y = -1000; } OldContext = SetContext (ScanContext);