diff options
author | Vaxry <[email protected]> | 2024-11-06 22:11:41 +0000 |
---|---|---|
committer | Vaxry <[email protected]> | 2024-11-06 22:11:46 +0000 |
commit | 0ec128e5ed5e15aaebff6c4b5983326ab524d690 (patch) | |
tree | 4672248137978e1b4300f1749290fabe7bea3866 | |
parent | 083a5cf3c1127dd2f638c3e9a665a88dd54a59a4 (diff) | |
download | Hyprland-0ec128e5ed5e15aaebff6c4b5983326ab524d690.tar.gz Hyprland-0ec128e5ed5e15aaebff6c4b5983326ab524d690.zip |
renderer: don't rely on datarootdir for local share
-rw-r--r-- | src/render/OpenGL.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp index eb0a029f..63a7e822 100644 --- a/src/render/OpenGL.cpp +++ b/src/render/OpenGL.cpp @@ -18,6 +18,7 @@ const std::vector<const char*> ASSET_PATHS = { DATAROOTDIR, #endif "/usr/share", + "/usr/local/share", }; inline void loadGLProc(void* pProc, const char* name) { |