mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-09-01 12:02:40 +02:00
Fixes for msvc warnings
This commit is contained in:
@@ -25,7 +25,7 @@ struct LocaleEN : public Locale
|
||||
{
|
||||
return
|
||||
U"\blThe Powder Toy - Version " MTOS(SAVE_VERSION) "." MTOS(MINOR_VERSION) " - https://powdertoy.co.uk, irc.freenode.net #powder\n"
|
||||
"\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\n"
|
||||
U"\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\uE069\n"
|
||||
"\n"
|
||||
"\bgControl+C/V/X are Copy, Paste and cut respectively.\n"
|
||||
"\bgTo choose a material, hover over one of the icons on the right, it will show a selection of elements in that group.\n"
|
||||
|
@@ -120,7 +120,7 @@ std::pair<String, int> DropDown::GetOption()
|
||||
{
|
||||
return options[optionIndex];
|
||||
}
|
||||
return std::pair<String, int>("", -1);
|
||||
return std::pair<String, int>(""_ascii, -1);
|
||||
}
|
||||
|
||||
void DropDown::SetOption(String option)
|
||||
|
Reference in New Issue
Block a user