add remote logging system using curl, normalize log messages removing \n, fix fra shaders precision issue, enable core and forward comp. in WGL, disable multisampling,
This commit is contained in:
@@ -559,10 +559,10 @@ bool LayoutManager::load(const char* path)
|
||||
auto id_str = current->Attribute("id");
|
||||
if (!id_str)
|
||||
{
|
||||
LOG("Layout node without id\n");
|
||||
LOG("Layout node without id");
|
||||
return false;
|
||||
}
|
||||
LOG("Parsing layout: %s\n", id_str);
|
||||
LOG("Parsing layout: %s", id_str);
|
||||
uint16_t id = const_hash(id_str);
|
||||
auto p = m_layouts.find(id);
|
||||
if (p == m_layouts.end())
|
||||
@@ -589,7 +589,7 @@ bool LayoutManager::load(const char* path)
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG("Layout id \"%s\" duplicated\n", id_str);
|
||||
LOG("Layout id \"%s\" duplicated", id_str);
|
||||
}
|
||||
current = current->NextSiblingElement("layout");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user