Skip to content

Commit

Permalink
Changed some debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
wiidev committed Jan 7, 2023
1 parent f8e75fd commit 3cc3643
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/settings/menus/HardDriveSM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ HardDriveSM::HardDriveSM()

HardDriveSM::~HardDriveSM()
{
gprintf("Quit HDD settings: %i\n", Settings.SDMode);
gprintf("SD mode %i\n", Settings.SDMode);
//! if partition has changed, Reinitialize it
if (Settings.partition != OldSettingsPartition ||
Settings.MultiplePartitions != OldSettingsMultiplePartitions ||
Expand All @@ -121,7 +121,7 @@ HardDriveSM::~HardDriveSM()
if(Settings.partition >= DeviceHandler::GetUSBPartitionCount())
Settings.partition = 0;

// set -1 to edit meta.xml arguments
// Set -1 to edit meta.xml arguments
NewSettingsUSBPort = -1;
}

Expand All @@ -138,7 +138,7 @@ HardDriveSM::~HardDriveSM()

if(oldSettingsUSBAutoMount != Settings.USBAutoMount || NewSettingsUSBPort == -1 || OldSettingsSDMode != Settings.SDMode)
{
// edit meta.xml arguments
// Edit meta.xml arguments
editMetaArguments();
gprintf("Updated meta.xml\n");
}
Expand Down

0 comments on commit 3cc3643

Please sign in to comment.