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:
2017-03-31 15:39:51 +01:00
parent ade95724e8
commit b1a3cb0309
18 changed files with 352 additions and 129 deletions

View File

@@ -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");
}