This commit is contained in:
Akash Mozumdar 2018-08-21 23:41:44 -04:00
parent fffb63edf4
commit 67e5ff31d1

View File

@ -40,8 +40,6 @@ QString TextThreadString(TextThread* thread)
ThreadParameter ParseTextThreadString(QString textThreadString)
{
QStringList threadParam = textThreadString.split(":");
ThreadParameter tp = {};
tp.hook = threadParam[1].toULongLong();
return { threadParam[0].toUInt(), threadParam[1].toULongLong(nullptr, 0), threadParam[2].toULongLong(nullptr, 0), threadParam[3].toULongLong(nullptr, 0) };
}