mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-03 14:49:22 +00:00
SettingsHandler: Make GenerateSerialNumber static
This doesn't depend on class internals.
This commit is contained in:
parent
98291cd843
commit
c748158182
3 changed files with 3 additions and 3 deletions
|
@ -132,7 +132,7 @@ void SettingsHandler::WriteByte(u8 b)
|
|||
m_key = (m_key >> 31) | (m_key << 1);
|
||||
}
|
||||
|
||||
const std::string SettingsHandler::generateSerialNumber()
|
||||
std::string SettingsHandler::GenerateSerialNumber()
|
||||
{
|
||||
time_t rawtime;
|
||||
tm* timeinfo;
|
||||
|
|
|
@ -33,7 +33,7 @@ public:
|
|||
|
||||
void Decrypt();
|
||||
void Reset();
|
||||
const std::string generateSerialNumber();
|
||||
static std::string GenerateSerialNumber();
|
||||
|
||||
private:
|
||||
void WriteByte(u8 b);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue