diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-18 23:48:02 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-18 23:48:02 +0300 |
commit | 477b72ad33c29de097585ed415e1940cc25e2b34 (patch) | |
tree | e67b296ecbfdca5a0b5a1cec1062f02add0afd58 /flatpak/patches/0005-Add-warning-about-being-an-unofficial-patch.patch | |
parent | 5162203c7d31ad58fbd8eac838f48466151af389 (diff) | |
parent | 3728cbb62abf1027f6d7daaa7b3c08f15e1e8c79 (diff) | |
download | PrismLauncher-477b72ad33c29de097585ed415e1940cc25e2b34.tar.gz PrismLauncher-477b72ad33c29de097585ed415e1940cc25e2b34.tar.bz2 PrismLauncher-477b72ad33c29de097585ed415e1940cc25e2b34.zip |
Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into prism_export2
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; + } + |