fix(wayland/drm): typo

This commit is contained in:
Nova
2025-08-02 17:10:03 -07:00
parent 173f32706d
commit 2d91ae6162

View File

@@ -23,7 +23,7 @@ impl MesaDrm {
// Get the device information from Vulkan properties
let props = VULKANO_CONTEXT.get().unwrap().phys_dev.properties();
let minor_version = props.render_minor.unwrap();
format!("/dev/dri/render{minor_version}")
format!("/dev/dri/renderD{minor_version}")
};
drm.device(client, id, path).await?;