summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-04 21:23:28 -0400
committerJune McEnroe <june@causal.agency>2018-08-04 21:23:28 -0400
commit6df61b5dda6a07bb1187404e9bdf2579a8cad2ae (patch)
tree14e3afd9098c386ac7867c7c6cd152c5d3c4913a /ui.c
parentImplement line editing, scrolling (diff)
downloadcatgirl-6df61b5dda6a07bb1187404e9bdf2579a8cad2ae.tar.gz
catgirl-6df61b5dda6a07bb1187404e9bdf2579a8cad2ae.zip
Show source link on exit
Diffstat (limited to '')
-rw-r--r--ui.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui.c b/ui.c
index 0e24510..8938c20 100644
--- a/ui.c
+++ b/ui.c
@@ -100,6 +100,10 @@ static void uiResize(void) {
 
 void uiHide(void) {
 	endwin();
+	printf(
+		"This program is AGPLv3 free software!\n"
+		"The source is available at <" SOURCE_URL ">\n"
+	);
 }
 
 void uiDraw(void) {