More cleanup of Log.h, move AndroidAssert into MsgHandler.cpp/h.

This commit is contained in:
Henrik Rydgård 2020-08-16 13:41:16 +02:00
parent e8a9845d93
commit 5704ebfb61
5 changed files with 43 additions and 49 deletions

View file

@ -39,6 +39,7 @@ long parseHexLong(std::string s) {
value = strtoul(s.c_str(),0, 0);
return value;
}
long parseLong(std::string s) {
long value = 0;
if (s.substr(0,2) == "0x") {