fix: appimage not launching

This commit is contained in:
Failerko 2026-01-18 15:52:08 +01:00
parent 47b58f4c09
commit f7ffdb65b9

View file

@ -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()
}