mirror of
https://github.com/AventurasTeam/Aventuras.git
synced 2026-04-28 03:40:11 +00:00
fix: appimage not launching
This commit is contained in:
parent
47b58f4c09
commit
f7ffdb65b9
1 changed files with 4 additions and 0 deletions
|
|
@ -2,5 +2,9 @@
|
|||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||
|
||||
fn main() {
|
||||
// Fix for "Failed to create GBM buffer" error on some Linux environments
|
||||
#[cfg(target_os = "linux")]
|
||||
std::env::set_var("WEBKIT_DISABLE_DMABUF_RENDERER", "1");
|
||||
|
||||
aventura_lib::run()
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue