core/hw/rsa: Make GetSignature() a const member function
This doesn't directly modify instance state, so it can be made const.
This commit is contained in:
@@ -223,7 +223,7 @@ void LoadNativeFirmKeysOld3DS() {
|
||||
return;
|
||||
}
|
||||
|
||||
auto rsa = RSA::GetSlot(0);
|
||||
const auto rsa = RSA::GetSlot(0);
|
||||
if (!rsa) {
|
||||
LOG_ERROR(HW_AES, "RSA slot is missing");
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user