TodayPlus Boards v2

TodayPlus for the Pocket PC Forums => HammerSkin => Topic started by: uk_skinner on November 26, 2004, 11:48:11 AM

Title: Small fix in satellite/radar
Post by: uk_skinner on November 26, 2004, 11:48:11 AM
Wichtel:

 In region,7,7, the var51 has to be examined beofre the image is drawed.  Otherwise, the TP will try to find 11.png or 0.png..


 original codes:
   image,%var3%,%var23%,%var51%.png
   image,%var3%,%var23%,%var51%.jpg
   image,%var3%,%var23%,%var51%.gif   
               if,var,var51,,=,11
      storevar,var51=1
   else
   endif

   if,var,var51,,=,0
      storevar,var51=10
   else
   endif
Chang to:

               if,var,var51,,=,11
      storevar,var51=1
   else
   endif

   if,var,var51,,=,0
      storevar,var51=10
   else
   endif

   image,%var3%,%var23%,%var51%.png
   image,%var3%,%var23%,%var51%.jpg
   image,%var3%,%var23%,%var51%.gif
Title: Small fix in satellite/radar
Post by: grayme on November 26, 2004, 02:26:08 PM
Is it me, but I can't see the difference.  :think:
Title: Small fix in satellite/radar
Post by: uk_skinner on November 26, 2004, 02:31:07 PM
Quote from: graymeIs it me, but I can't see the difference.  :think:

Sorry, right now it is the color.  The original codes Blue-->Red, the chnaged one Red-->Blue.
Title: Small fix in satellite/radar
Post by: grayme on November 26, 2004, 02:44:31 PM
Quote from: uk_skinner
Quote from: graymeIs it me, but I can't see the difference.  :think:

Sorry, right now it is the color.  The original codes Blue-->Red, the chnaged one Red-->Blue.

Ah, so it was the order of the code rather than the code itself; I spent so long looking for the difference in the red text, I missed that!  :)
Title: Small fix in satellite/radar
Post by: Wichtel on November 26, 2004, 03:58:32 PM
Fixed