diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-18 23:49:52 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-07-18 23:49:52 +0300 |
commit | 4c319c8f4fa19a6e999f547a8f43b855cc6de36a (patch) | |
tree | 38c010d2e8f64814e91edbbac64a021539e03e27 /flatpak/patches/0005-Add-warning-about-being-an-unofficial-patch.patch | |
parent | 391497645ff2054dbc1eac48c8bc49133b86b319 (diff) | |
parent | 3728cbb62abf1027f6d7daaa7b3c08f15e1e8c79 (diff) | |
download | PrismLauncher-4c319c8f4fa19a6e999f547a8f43b855cc6de36a.tar.gz PrismLauncher-4c319c8f4fa19a6e999f547a8f43b855cc6de36a.tar.bz2 PrismLauncher-4c319c8f4fa19a6e999f547a8f43b855cc6de36a.zip |
Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into flame_import
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; + } + |