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:
parent
c55e81b946
commit
3ab0701192
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue