1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 05:23:04 +01:00

Use return {} instead of return ""

This commit is contained in:
Gymnasiast
2022-01-16 13:18:41 +01:00
parent 0aa256a26a
commit c69ef062ab
4 changed files with 11 additions and 11 deletions

View File

@@ -87,14 +87,14 @@ namespace Platform
std::string GetSteamPath()
{
return "";
return {};
}
# ifndef NO_TTF
std::string GetFontPath(const TTFFontDescriptor& font)
{
STUB();
return "";
return {};
}
# endif