Update Job.cpp
This commit is contained in:
parent
0fac5c2519
commit
317b521c76
1 changed files with 2 additions and 2 deletions
|
@ -151,7 +151,7 @@ PowVariant Job::powVariant() const
|
|||
return PowVariant::POW_V0;
|
||||
}
|
||||
} else if (m_powVariant == PowVariant::POW_MSR) {
|
||||
if (m_blob[0] > 8) {
|
||||
if (m_blob[0] >= 8) {
|
||||
return PowVariant::POW_FAST_2;
|
||||
}
|
||||
}
|
||||
|
@ -188,4 +188,4 @@ bool Job::operator==(const Job &other) const
|
|||
bool Job::operator!=(const Job &other) const
|
||||
{
|
||||
return m_id != other.m_id || memcmp(m_blob, other.m_blob, sizeof(m_blob)) != 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue