From 0a72780b5977599e093aadb26bbb74695554d558 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 2 Jan 2022 21:02:43 +0100 Subject: [PATCH] Fixed two small typos. --- es-app/src/FileData.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/FileData.cpp b/es-app/src/FileData.cpp index d20b39b17..0e175e162 100644 --- a/es-app/src/FileData.cpp +++ b/es-app/src/FileData.cpp @@ -1334,7 +1334,7 @@ const std::string FileData::findEmulatorPath(std::string& command) for (std::string path : emulatorSystemPaths) { #if defined(_WIN64) std::wstring pathWide = Utils::String::stringToWideString(path); - // Search for the emulator using the PATH environmental variable. + // Search for the emulator using the PATH environment variable. DWORD size = SearchPathW(nullptr, pathWide.c_str(), L".exe", 0, nullptr, nullptr); if (size) { @@ -1395,7 +1395,7 @@ const std::string FileData::findEmulatorPath(std::string& command) #if defined(_WIN64) std::wstring emuExecutableWide = Utils::String::stringToWideString(emuExecutable); - // Search for the emulator using the PATH environmental variable. + // Search for the emulator using the PATH environment variable. DWORD size = SearchPathW(nullptr, emuExecutableWide.c_str(), L".exe", 0, nullptr, nullptr); if (size) {