Actually include the name of the mod in proxy's name.

This commit is contained in:
IQuant 2024-09-21 13:54:29 +03:00
parent f802c31fd0
commit 78f45aa6a8

View file

@ -36,11 +36,12 @@ async fn main() -> Result<(), eframe::Error> {
}; };
eframe::run_native( eframe::run_native(
"Noita Proxy", "Noita Proxy", // Don't change that, it defines where settings are stored.
NativeOptions { NativeOptions {
viewport: ViewportBuilder::default() viewport: ViewportBuilder::default()
.with_min_inner_size([800.0, 600.0]) .with_min_inner_size([800.0, 600.0])
.with_icon(icon), .with_icon(icon)
.with_title("Noita Entangled Worlds Proxy"),
follow_system_theme: false, follow_system_theme: false,
..Default::default() ..Default::default()
}, },