mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-05 19:51:45 +00:00
Loader: Fix char * const correctness.
This commit is contained in:
parent
5c6f0fc14c
commit
c800421a36
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ void ContentManagement::TryMountSdCard() {
|
|||
/* Mount SD card, if psc, bus, and pcv have been created. */
|
||||
if (!g_has_initialized_fs_dev && HasCreatedTitle(0x0100000000000021) && HasCreatedTitle(0x010000000000000A) && HasCreatedTitle(0x010000000000001A)) {
|
||||
Handle tmp_hnd = 0;
|
||||
static const char *required_active_services[] = {"pcv", "gpio", "pinmux", "psc:c"};
|
||||
static const char * const required_active_services[] = {"pcv", "gpio", "pinmux", "psc:c"};
|
||||
for (unsigned int i = 0; i < sizeof(required_active_services) / sizeof(required_active_services[0]); i++) {
|
||||
if (R_FAILED(smGetServiceOriginal(&tmp_hnd, smEncodeName(required_active_services[i])))) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue