Skip to content

Commit

Permalink
fix version number
Browse files Browse the repository at this point in the history
  • Loading branch information
FredYeye committed Aug 12, 2022
1 parent d409d8c commit 117cbde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/egui_glutin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub struct EguiState {
pub fn setup_egui_glutin(el: &glutin::event_loop::EventLoop<()>, window_size: (u32, u32)) -> EguiState {
let wb = glutin::window::WindowBuilder::new()
.with_inner_size(glutin::dpi::LogicalSize::new(window_size.0, window_size.1))
.with_title("Game data reader 0.8");
.with_title("Game data reader 0.7");

let windowed_context = glutin::ContextBuilder::new().build_windowed(wb, &el).unwrap();
let windowed_context = unsafe{windowed_context.make_current().unwrap()};
Expand Down

0 comments on commit 117cbde

Please sign in to comment.