mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
boot: fix pinmux init off-by-one
This commit is contained in:
parent
600d68bd1a
commit
6ee8720028
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ namespace sts::pinmux {
|
|||
std::abort();
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < num_configs - 1; i++) {
|
||||
for (size_t i = 0; i < num_configs; i++) {
|
||||
UpdatePad(configs[i].name, configs[i].val, configs[i].mask);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue