diff options
| author | Tom Barrett <tombarrett@siu.edu> | 2017-11-24 06:53:29 -0600 | 
|---|---|---|
| committer | Tom Barrett <tombarrett@siu.edu> | 2017-11-24 06:53:29 -0600 | 
| commit | 6b152d1b551353ae58f38b046596eb8d0418f39b (patch) | |
| tree | dd981dac665dbd9cc2f81e86f634f6d61fdbc5a2 /src/main.rs | |
| parent | 007bb4def33ac4291f6d5b014ab57f2c760c1e3b (diff) | |
-gave threads more time to calculate before joining (would even like to do a non blocking join one day)
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/main.rs b/src/main.rs index 81ce270..3175477 100644 --- a/src/main.rs +++ b/src/main.rs @@ -79,7 +79,7 @@ fn main() {                      None => (),                  }              }, -            None => (), +            _ => (),          }          if !paused { @@ -91,7 +91,7 @@ fn main() {          if draw_box {              match first_location {                  Some(first_location) => map.draw_box(first_location, cursor.get_location()), -                None => (), +                _ => (),              }          } | 
