1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-29 22:20:33 +00:00

Merge branch 'multicast' into 'master'

Fix two excessive type casting instances

See merge request OpenMW/openmw!953
This commit is contained in:
Evil Eye 2021-06-24 17:32:25 +00:00
commit 1a421c3b2e
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ namespace ESM
void WeatherState::save(ESMWriter& esm) const
{
esm.writeHNCString(currentRegionRecord, mCurrentRegion.c_str());
esm.writeHNCString(currentRegionRecord, mCurrentRegion);
esm.writeHNT(timePassedRecord, mTimePassed);
esm.writeHNT(fastForwardRecord, mFastForward);
esm.writeHNT(weatherUpdateTimeRecord, mWeatherUpdateTime);

View File

@ -94,7 +94,7 @@ namespace Resource
Files::IStreamPtr stream;
try
{
stream = mVFS->get(normalized.c_str());
stream = mVFS->get(normalized);
}
catch (std::exception& e)
{