diff --git a/src/backends/windows.cpp b/src/backends/windows.cpp index 0869406..8365cad 100644 --- a/src/backends/windows.cpp +++ b/src/backends/windows.cpp @@ -58,7 +58,7 @@ bool backend::toggleAutostart(bool enabled) { std::filesystem::path shortcutPath = std::getenv("APPDATA"); shortcutPath = shortcutPath / "Microsoft" / "Windows" / "Start Menu" / "Programs" / "Startup"; std::filesystem::create_directories(shortcutPath); - shortcutPath = shortcutPath / "PlayerLink.lnk";; + shortcutPath = shortcutPath / "PlayerLink.lnk"; if (!enabled && std::filesystem::exists(shortcutPath)) { std::filesystem::remove(shortcutPath); @@ -127,4 +127,4 @@ bool backend::init() { } #undef EM_DASH -#endif \ No newline at end of file +#endif