1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-14 05:57:37 +00:00

Merge pull request #129 from Quuxplusone/unordered-map

Remove USE_UNORDERED_MAP because it has bit-rotted.
This commit is contained in:
Zeno Rogue
2020-11-05 20:03:13 +01:00
committed by GitHub
18 changed files with 26 additions and 38 deletions

View File

@@ -1095,8 +1095,8 @@ EX namespace mapeditor {
displayButton(8, vid.yres-8-fs*2, XLAT("ESC = return to the game"), SDLK_ESCAPE, 0);
}
EX unordered_set<cell*> affected;
EX unordered_set<int> affected_id;
EX set<cell*> affected;
EX set<int> affected_id;
EX void showMapEditor() {
cmode = sm::MAP;