this repo has no description
at main 314 B view raw
1// Prevents additional console window on Windows in release, DO NOT REMOVE!! 2#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] 3 4fn main() { 5 #[cfg(target_os = "linux")] 6 unsafe{ 7 std::env::set_var("WEBKIT_DISABLE_DMABUF_RENDERER", "1"); // Fix webkit being shit 8 } 9 10 vrcmacros_lib::run() 11}