summaryrefslogtreecommitdiff
path: root/src/structs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs.rs')
-rw-r--r--src/structs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs.rs b/src/structs.rs
index aa70680..1d33215 100644
--- a/src/structs.rs
+++ b/src/structs.rs
@@ -21,7 +21,7 @@ impl StoneWall {
pub fn output(&mut self) {
let colors = [[31, 32], [33, 35]];
- self.rows.sort_by_key(|x| x[0]);
+ //self.rows.sort_by_key(|x| x[0]);
for (i, row) in self.rows.iter().enumerate() {
for (j, &stone) in row.iter().enumerate() {