From daa52f2b97b64baaafd4ef6def6638ac1b285372 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 23 May 2021 02:58:00 +0100 Subject: [PATCH] gamestate: Change default table size to match mao and penultima Signed-off-by: Ian Jackson --- src/gamestate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamestate.rs b/src/gamestate.rs index 347cf654..ef234c49 100644 --- a/src/gamestate.rs +++ b/src/gamestate.rs @@ -23,7 +23,7 @@ visible_slotmap_key!{ VisiblePieceId(b'.') } #[serde(transparent)] pub struct Timestamp(pub u64); /* time_t */ -pub const DEFAULT_TABLE_SIZE: Pos = PosC::new( 400, 200 ); +pub const DEFAULT_TABLE_SIZE: Pos = PosC::new( 300, 200 ); pub const DEFAULT_TABLE_COLOUR: &str = "green"; #[derive(Copy,Clone,Debug,Eq,Ord,PartialEq,PartialOrd)] -- 2.30.2