Skip to content

Commit

Permalink
refactor: reword some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilNarayana committed Oct 6, 2021
1 parent 9b8a8a2 commit c6752b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dolphin/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export async function addGamePathToIni(type: DolphinLaunchType, gameDir: string)
const iniPath = path.join(userFolder, "Config", "Dolphin.ini");
const iniFile = new IniFile();
if (await fileExists(iniPath)) {
log.info("Found a Dolphin.ini to update...");
log.info("Updating game path...");
await iniFile.load(iniPath, false);
const generalSection = iniFile.getOrCreateSection("General");
const numPaths = generalSection.get("ISOPaths", "0");
Expand Down Expand Up @@ -138,7 +138,7 @@ export async function updateDolphinSettings(): Promise<void> {
coreSection.set("SlippiReplayMonthFolders", useMonthlySubfolders);
};
if (await fileExists(iniPath)) {
log.info("Found a Dolphin.ini to update...");
log.info("Updating dolphin settings...");
await iniFile.load(iniPath);
updateSettings();
} else {
Expand Down

0 comments on commit c6752b3

Please sign in to comment.