Skip to content

Commit 87bd141

Browse files
committed
Ho Ho Hint Sorting
- Make sure the hints appear in a consistent order when iterating over them
1 parent d9e011c commit 87bd141

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

logic/World.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class World
131131
std::list<Hint> korlHints = {};
132132
std::list<Hint> korlHyruleHints = {};
133133
std::list<Hint> kreebHints = {};
134-
std::map<Location*, std::list<Hint>> hohoHints = {}; // map of Ho Ho Hint Location to hints
134+
std::map<Location*, std::list<Hint>, PointerLess<Location>> hohoHints = {}; // map of Ho Ho Hint Location to hints
135135
Hint bigOctoFairyHint{};
136136
std::list<std::list<Location*>> playthroughSpheres = {};
137137
std::list<std::list<Entrance*>> entranceSpheres = {};

0 commit comments

Comments
 (0)