Fix clippy beta lint

This commit is contained in:
Aaron Hill 2024-02-04 14:05:05 -05:00 committed by Nathan Adams
parent 4b21cb0a0b
commit 86e471835e
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ use std::cell::RefCell;
use renderdoc::RenderDoc;
thread_local! {
pub static RENDERDOC: RefCell<Option<Result<RenderDoc<renderdoc::V141>, renderdoc::Error>>> = RefCell::new(None);
pub static RENDERDOC: RefCell<Option<Result<RenderDoc<renderdoc::V141>, renderdoc::Error>>> = const { RefCell::new(None) };
}
pub fn start_frame_capture() {