mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
"or" should be "||". Don't use "or", "and", etc.. It breaks build.
This commit is contained in:
parent
46d431e7c3
commit
099d7ff2ad
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ void GUIFormSpecMenu::regenerateGui(v2u32 screensize)
|
|||
errorstream<<"WARNING: invalid use of background without a size[] element"<<std::endl;
|
||||
m_backgrounds.push_back(ImageDrawSpec(name, pos, geom));
|
||||
}
|
||||
else if(type == "field" or type == "textarea")
|
||||
else if(type == "field" || type == "textarea")
|
||||
{
|
||||
std::string fname = f.next(";");
|
||||
std::string flabel = f.next(";");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue