1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-06 18:40:23 +00:00

Merge pull request #2050 from Capostrophic/markers

[Regression] Revert unnecessary case changes for fallback records
This commit is contained in:
Bret Curtis 2018-12-02 11:16:20 +01:00 committed by GitHub
commit 807cab568e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1059,11 +1059,11 @@ namespace MWWorld
{ {
// Load default marker definitions, if game files do not have them for some reason // Load default marker definitions, if game files do not have them for some reason
std::pair<std::string, std::string> markers[] = { std::pair<std::string, std::string> markers[] = {
std::make_pair("DivineMarker", "marker_divine.nif"), std::make_pair("divinemarker", "marker_divine.nif"),
std::make_pair("DoorMarker", "marker_arrow.nif"), std::make_pair("doormarker", "marker_arrow.nif"),
std::make_pair("NorthMarker", "marker_north.nif"), std::make_pair("northmarker", "marker_north.nif"),
std::make_pair("TempleMarker", "marker_temple.nif"), std::make_pair("templemarker", "marker_temple.nif"),
std::make_pair("TravelMarker", "marker_travel.nif") std::make_pair("travelmarker", "marker_travel.nif")
}; };
for (const std::pair<std::string, std::string> marker : markers) for (const std::pair<std::string, std::string> marker : markers)
@ -1085,7 +1085,7 @@ namespace MWWorld
{ {
// Load default Door type marker definitions // Load default Door type marker definitions
std::pair<std::string, std::string> markers[] = { std::pair<std::string, std::string> markers[] = {
std::make_pair("PrisonMarker", "marker_prison.nif") std::make_pair("prisonmarker", "marker_prison.nif")
}; };
for (const std::pair<std::string, std::string> marker : markers) for (const std::pair<std::string, std::string> marker : markers)