diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-07-25 22:21:25 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-07-25 22:21:25 +0200 |
| commit | e1cb45be6575c805e3b0ab1e2d03d4047acf88d1 (patch) | |
| tree | f2671f209de7a8217f148f7ec9f580c1789eb7ab /src/main.rs | |
| parent | 149e0b6ae9871515be21f23b492f5ef7355e2ca4 (diff) | |
make it use less ram using packed structs
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 3f18de9..1a8a7c9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,4 @@ +#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // hide console window on Windows in release pub mod vector; pub mod text; pub mod splitter; @@ -68,6 +69,6 @@ fn main() { ).save(merged); } } else { - let _ = gui::run(); + gui::run(); } } |