Remove doubled semicolon

This commit is contained in:
EinTim 2024-11-07 00:28:32 +01:00 committed by GitHub
parent 322ceeaddb
commit 7b5666a906
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ bool backend::toggleAutostart(bool enabled) {
std::filesystem::path shortcutPath = std::getenv("APPDATA"); std::filesystem::path shortcutPath = std::getenv("APPDATA");
shortcutPath = shortcutPath / "Microsoft" / "Windows" / "Start Menu" / "Programs" / "Startup"; shortcutPath = shortcutPath / "Microsoft" / "Windows" / "Start Menu" / "Programs" / "Startup";
std::filesystem::create_directories(shortcutPath); std::filesystem::create_directories(shortcutPath);
shortcutPath = shortcutPath / "PlayerLink.lnk";; shortcutPath = shortcutPath / "PlayerLink.lnk";
if (!enabled && std::filesystem::exists(shortcutPath)) { if (!enabled && std::filesystem::exists(shortcutPath)) {
std::filesystem::remove(shortcutPath); std::filesystem::remove(shortcutPath);
@ -127,4 +127,4 @@ bool backend::init() {
} }
#undef EM_DASH #undef EM_DASH
#endif #endif