Fixed obvious mistake related to selecting destination
This commit is contained in:
parent
be930ec759
commit
3ac3d7f566
@ -58,7 +58,6 @@ namespace inst::ui {
|
|||||||
}
|
}
|
||||||
|
|
||||||
namespace netInstStuff{
|
namespace netInstStuff{
|
||||||
FsStorageId m_destStorageId = FsStorageId_SdCard;
|
|
||||||
|
|
||||||
void InitializeServerSocket() try
|
void InitializeServerSocket() try
|
||||||
{
|
{
|
||||||
@ -118,6 +117,7 @@ namespace netInstStuff{
|
|||||||
appletLockExit();
|
appletLockExit();
|
||||||
inst::ui::loadInstallScreen();
|
inst::ui::loadInstallScreen();
|
||||||
bool nspInstalled = true;
|
bool nspInstalled = true;
|
||||||
|
FsStorageId m_destStorageId = FsStorageId_SdCard;
|
||||||
|
|
||||||
if (ourStorage) m_destStorageId = FsStorageId_NandUser;
|
if (ourStorage) m_destStorageId = FsStorageId_NandUser;
|
||||||
|
|
||||||
|
@ -71,13 +71,13 @@ namespace inst::ui {
|
|||||||
}
|
}
|
||||||
|
|
||||||
namespace nspInstStuff {
|
namespace nspInstStuff {
|
||||||
FsStorageId m_destStorageId = FsStorageId_SdCard;
|
|
||||||
|
|
||||||
void installNspFromFile(std::vector<std::filesystem::path> ourNspList, int whereToInstall)
|
void installNspFromFile(std::vector<std::filesystem::path> ourNspList, int whereToInstall)
|
||||||
{
|
{
|
||||||
appletLockExit();
|
appletLockExit();
|
||||||
inst::ui::loadInstallScreen();
|
inst::ui::loadInstallScreen();
|
||||||
bool nspInstalled = true;
|
bool nspInstalled = true;
|
||||||
|
FsStorageId m_destStorageId = FsStorageId_SdCard;
|
||||||
|
|
||||||
if (whereToInstall) m_destStorageId = FsStorageId_NandUser;
|
if (whereToInstall) m_destStorageId = FsStorageId_NandUser;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user