From d04f7e07d4a5278e8e8530925e2852b591d6e37b Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Sat, 22 Jan 2022 04:50:55 -0500 Subject: input: fix obvious memory leak --- keyboard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'keyboard.h') diff --git a/keyboard.h b/keyboard.h index 2827b6a..7189d70 100644 --- a/keyboard.h +++ b/keyboard.h @@ -24,7 +24,7 @@ struct clr_scheme { }; struct key { - const char *label; // primary label + char *label; // actual coordinates on the surface (pixels), will be computed automatically // for all keys uint32_t x, y, w, h; -- cgit 1.4.1