diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-07-21 11:02:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 11:02:57 +0100 |
commit | 0be4db30eb98f65543b30d6a2d970ef1df64633b (patch) | |
tree | 2135c398f3d01816a0f508dd5e29e155625793cc /flatpak/patches/0005-Add-warning-about-being-an-unofficial-patch.patch | |
parent | 4c6929038159a29c437b30616daa0b2672531e4d (diff) | |
parent | 821dd8400b1a27ab1f932200bfa77d7a04edef5d (diff) | |
download | PrismLauncher-0be4db30eb98f65543b30d6a2d970ef1df64633b.tar.gz PrismLauncher-0be4db30eb98f65543b30d6a2d970ef1df64633b.tar.bz2 PrismLauncher-0be4db30eb98f65543b30d6a2d970ef1df64633b.zip |
Merge branch 'PrismLauncher:develop' into better-component-installation
Diffstat (limited to 'flatpak/patches/0005-Add-warning-about-being-an-unofficial-patch.patch')
-rw-r--r-- | flatpak/patches/0005-Add-warning-about-being-an-unofficial-patch.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/flatpak/patches/0005-Add-warning-about-being-an-unofficial-patch.patch b/flatpak/patches/0005-Add-warning-about-being-an-unofficial-patch.patch new file mode 100644 index 00000000..b031d739 --- /dev/null +++ b/flatpak/patches/0005-Add-warning-about-being-an-unofficial-patch.patch @@ -0,0 +1,17 @@ +diff --git a/src/init.c b/src/init.c +index 06dbb3f2..a7c6da86 100644 +--- a/src/init.c ++++ b/src/init.c +@@ -449,6 +449,12 @@ GLFWAPI int glfwInit(void) + _glfw.initialized = GLFW_TRUE; + + glfwDefaultWindowHints(); ++ ++ fprintf(stderr, "!!! Patched GLFW from https://github.com/Admicos/minecraft-wayland\n" ++ "!!! If any issues with the window, or some issues with rendering, occur, " ++ "first try with the built-in GLFW, and if that solves the issue, report there first.\n" ++ "!!! Use outside Minecraft is untested, and things might break.\n"); ++ + return GLFW_TRUE; + } + |