From b303a87db03522795ec8697415b61750d5f8c565 Mon Sep 17 00:00:00 2001 From: pommicket Date: Thu, 20 Jul 2023 20:27:39 -0400 Subject: update deb Installed-Size, fix warning on non-Windows --- control | 2 +- main.c | 2 -- ted.c | 1 + 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/control b/control index bed7d6e..c6a991c 100644 --- a/control +++ b/control @@ -6,6 +6,6 @@ Architecture: amd64 Essential: no Maintainer: Pommicket Description: A text editor. -Installed-Size: 2424832 +Installed-Size: 3387392 Depends: libsdl2-2.0-0 Homepage: https://github.com/pommicket/ted diff --git a/main.c b/main.c index 9f697aa..ec6d16b 100644 --- a/main.c +++ b/main.c @@ -1,6 +1,4 @@ /* -TODO: -- windows UI scaling FUTURE FEATURES: - autodetect indentation (tabs vs spaces) - font setting & support for multiple fonts to cover more characters diff --git a/ted.c b/ted.c index 5585685..6a44d83 100644 --- a/ted.c +++ b/ted.c @@ -351,6 +351,7 @@ static float ted_get_ui_scaling(Ted *ted) { return 1; return (float)dpi / 96.0f; #else + (void)ted; return 1; #endif } -- cgit v1.2.3