mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-21 21:39:40 +00:00
Revert unnecessary case changes for fallback records
This commit is contained in:
parent
10a049b087
commit
c59513c30c
1 changed files with 6 additions and 6 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue