Started work on bugfix version. master
authorMartin Read <mpread@chiark.greenend.org.uk>
Sat, 15 Mar 2014 16:44:57 +0000 (16:44 +0000)
committerMartin Read <mpread@chiark.greenend.org.uk>
Sat, 15 Mar 2014 16:44:57 +0000 (16:44 +0000)
Makefile
display-nc.cc

index 77f41ea..1cd531f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ OBJS:=$(GENERATED_OBJS) $(HANDWRITTEN_OBJS)
 GAME:=obumbrata
 MAJVERS:=1
 MINVERS:=0
-PATCHVERS:=0
+PATCHVERS:=1
 COMMON_CFLAGS:=-Wall -Wwrite-strings -Wunreachable-code -Wformat -Werror=format-security -fstack-protector --param=ssp-buffer-size=4 -DMAJVERS=$(MAJVERS) -DMINVERS=$(MINVERS) -DPATCHVERS=$(PATCHVERS)-std=gnu11 -D_FORTIFY_SOURCE=2 -I$(srcdir)
 COMMON_CXXFLAGS:=-Wall -Wwrite-strings -Wno-unused-but-set-variable -Wredundant-decls -Wunreachable-code -Wformat -Werror=format-security -fstack-protector --param=ssp-buffer-size=4 -DMAJVERS=$(MAJVERS) -DMINVERS=$(MINVERS) -DPATCHVERS=$(PATCHVERS) -std=gnu++11 -D_FORTIFY_SOURCE=2 -I$(srcdir)
 PRODUCTION_CFLAGS:=$(COMMON_CFLAGS) -O2 
index e22a58e..6ef66fb 100644 (file)
@@ -259,7 +259,7 @@ static void draw_main_menu(void)
     mvwprintw(fullscreen_window, 11, 25, "R)esume existing game\n");
     mvwprintw(fullscreen_window, 12, 25, "Q)uit\n");
     draw_mainmenu_tip();
-    mvwprintw(fullscreen_window, 3, 23, "Version %d.%d.%d (7DRLC 2014 Edition)\n", MAJVERS, MINVERS, PATCHVERS);
+    mvwprintw(fullscreen_window, 3, 33, "Version %d.%d.%d\n", MAJVERS, MINVERS, PATCHVERS);
     show_panel(fullscreen_panel);
     update_panels();
     doupdate();