strat: use m_ for member variables

This commit is contained in:
Michael Scire
2021-10-10 00:14:06 -07:00
parent ce28591ab2
commit a595c232b9
425 changed files with 8531 additions and 8484 deletions

View File

@@ -19,13 +19,13 @@
namespace ams::os::impl {
u64 RngManager::GenerateRandomU64() {
std::scoped_lock lk(this->lock);
std::scoped_lock lk(m_lock);
if (AMS_UNLIKELY(!this->initialized)) {
if (AMS_UNLIKELY(!m_initialized)) {
this->Initialize();
}
return this->mt.GenerateRandomU64();
return m_mt.GenerateRandomU64();
}
}