From 2a7f5b2418d9e32ecc5b1205befae11c16e662d0 Mon Sep 17 00:00:00 2001 From: Isabelle L Date: Sat, 13 Jun 2020 16:15:04 -0500 Subject: [PATCH] removed a pub that shouldn't be there --- src/memory.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/memory.rs b/src/memory.rs index 9fa4422..5867eb4 100644 --- a/src/memory.rs +++ b/src/memory.rs @@ -1,6 +1,6 @@ /// all the memory as one big fat fucking slice pub struct Memory { - pub data: [u16; std::u16::MAX as usize], + data: [u16; std::u16::MAX as usize], } impl Memory {