diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | src/main.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ target tags -screenshots +screenshots* *.swp *.out *.dll diff --git a/src/main.rs b/src/main.rs index bd3dc74..4403252 100644 --- a/src/main.rs +++ b/src/main.rs @@ -598,7 +598,7 @@ impl State { // there isnt anything to save . why did you set the scale so small... return Ok(()); } - let time = Utc::now(); + let time = Local::now(); let filename = time .format("screenshots/autosdf-%Y-%m-%d-%H-%M-%S.png") .to_string(); |