From 848a823b1287d8804e8d6170c3ca30ccf7689784 Mon Sep 17 00:00:00 2001 From: epoch Date: Tue, 5 Feb 2019 21:46:21 -0600 Subject: added --version/-v/version flag/command. changed mouse coords from shrot to int --- src/common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h index 93e8d27..9b7dd6d 100644 --- a/src/common.h +++ b/src/common.h @@ -35,9 +35,9 @@ typedef struct { real y; } c2_t; -typedef struct {//no screens will ever be bigger than 32k x 32k, right? - short x; - short y; +typedef struct {//x11 wants coords to be integers. let's make this that. + int x; + int y; } cs_t; typedef struct { -- cgit v1.2.3