diff options
| author | mucek4 <tomaz@gorenc.org> | 2013-01-10 11:53:46 +0100 |
|---|---|---|
| committer | mucek4 <tomaz@gorenc.org> | 2013-01-10 11:53:46 +0100 |
| commit | 6818a6f49ec809eadddaed622b5f31a61cf621fe (patch) | |
| tree | ba678a2c01da806460fce98f569d889fcfe558dd | |
| parent | 7c3cda9f294d9607f42d2fb4f11463c17bb774c9 (diff) | |
| download | cgeo-6818a6f49ec809eadddaed622b5f31a61cf621fe.zip cgeo-6818a6f49ec809eadddaed622b5f31a61cf621fe.tar.gz cgeo-6818a6f49ec809eadddaed622b5f31a61cf621fe.tar.bz2 | |
Fixed parsing of found icon on level 14+
| -rw-r--r-- | main/src/cgeo/geocaching/connector/gc/IconDecoder.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/cgeo/geocaching/connector/gc/IconDecoder.java b/main/src/cgeo/geocaching/connector/gc/IconDecoder.java index 74e78cc..50c0a6a 100644 --- a/main/src/cgeo/geocaching/connector/gc/IconDecoder.java +++ b/main/src/cgeo/geocaching/connector/gc/IconDecoder.java @@ -100,7 +100,7 @@ public abstract class IconDecoder { private final static int COLOR_TRADITIONAL = 0x316013; private final static int COLOR_MYSTERY = 0x243C97; private final static int COLOR_MULTI = 0xFFDE19; - private final static int COLOR_FOUND = 0xFBEA5D; + private final static int COLOR_FOUND = 0xFF0000; // Offset inside cache icon private final static int POSX_TRADI = 7; @@ -109,8 +109,8 @@ public abstract class IconDecoder { private final static int POSY_MULTI = -9; // for orange 10 private final static int POSX_MYSTERY = 5; private final static int POSY_MYSTERY = -13; - private final static int POSX_FOUND = 10; - private final static int POSY_FOUND = -8; + private final static int POSX_FOUND = 9; + private final static int POSY_FOUND = -6; /** * For level 14 find the borders of the icons and then use a single pixel and color to match. |
