summaryrefslogtreecommitdiff
path: root/src/choose_hill.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2005-09-04 12:14:54 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2005-09-04 12:14:54 +0200
commit6dce9b9515265d938a672a0817fd293015c77551 (patch)
tree999fa51735a22abf8da35e71c12e15882936b2bb /src/choose_hill.cxx
parent700f8cb97bc9a033b82252e0120e41962135fb06 (diff)
Make Hill flags part of Hill class
Diffstat (limited to 'src/choose_hill.cxx')
-rw-r--r--src/choose_hill.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/choose_hill.cxx b/src/choose_hill.cxx
index 1cab2ac..f144d5e 100644
--- a/src/choose_hill.cxx
+++ b/src/choose_hill.cxx
@@ -35,7 +35,7 @@ choose_hill(const Hills *hills, const char *l) {
for (int i=0; i<h_sort->get_num(); i++) {
Hill *m = h_sort->get(i);
- if (m->flags & (HILL_DUPLICATE | HILL_TRACK_POINT)) {
+ if (m->flags & (Hill::DUPLICATE | Hill::TRACK_POINT)) {
continue;
}
sc->add(m->name, m);