diff --git a/README.md b/README.md
index 1cfed86c4..ba2e6243d 100755
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
yuzu emulator early access
=============
-This is the source code for early-access 2093.
+This is the source code for early-access 2095.
## Legal Notice
diff --git a/dist/yuzu.ico b/dist/yuzu.ico
index 7c998a5c5..df3be8464 100755
Binary files a/dist/yuzu.ico and b/dist/yuzu.ico differ
diff --git a/dist/yuzu.svg b/dist/yuzu.svg
index 98ded2d8f..93171d1bf 100755
--- a/dist/yuzu.svg
+++ b/dist/yuzu.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/externals/discord-rpc/src/discord_register_linux.cpp b/externals/discord-rpc/src/discord_register_linux.cpp
index dd92eea0d..dfc5340c1 100755
--- a/externals/discord-rpc/src/discord_register_linux.cpp
+++ b/externals/discord-rpc/src/discord_register_linux.cpp
@@ -42,12 +42,12 @@ extern "C" DISCORD_EXPORT void Discord_Register(const char* applicationId, const
}
const char* desktopFileFormat = "[Desktop Entry]\n"
- "Name=Game %s\n"
- "Exec=%s %%u\n" // note: it really wants that %u in there
- "Type=Application\n"
- "NoDisplay=true\n"
- "Categories=Discord;Games;\n"
- "MimeType=x-scheme-handler/discord-%s;\n";
+ "Name=Game %s\n"
+ "Exec=%s %%u\n" // note: it really wants that %u in there
+ "Type=Application\n"
+ "NoDisplay=true\n"
+ "Categories=Discord;Games;\n"
+ "MimeType=x-scheme-handler/discord-%s;\n";
char desktopFile[2048];
int fileLen = snprintf(
desktopFile, sizeof(desktopFile), desktopFileFormat, applicationId, command, applicationId);