From 3b797318f53e40927ad82094862c3813e81d3b65 Mon Sep 17 00:00:00 2001 From: shchmue Date: Fri, 19 Apr 2019 13:03:11 -0400 Subject: [PATCH] Bump version to v1.1.1 --- Makefile | 4 +++- source/keys/keys.c | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 199f695..7508e24 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,8 @@ IPL_LOAD_ADDR := 0x40003000 TARGET := Lockpick_RCM LPVERSION_MAJOR := 1 LPVERSION_MINOR := 1 +LPVERSION_BUGFX := 1 + BUILD := build OUTPUT := output SOURCEDIR = source @@ -53,7 +55,7 @@ OBJS += $(addprefix $(BUILD)/$(TARGET)/, \ ) CUSTOMDEFINES := -DIPL_LOAD_ADDR=$(IPL_LOAD_ADDR) -CUSTOMDEFINES += -DLP_VER_MJ=$(LPVERSION_MAJOR) -DLP_VER_MN=$(LPVERSION_MINOR) +CUSTOMDEFINES += -DLP_VER_MJ=$(LPVERSION_MAJOR) -DLP_VER_MN=$(LPVERSION_MINOR) -DLP_VER_BF=$(LPVERSION_BUGFX) ARCH := -march=armv4t -mtune=arm7tdmi -mthumb-interwork CFLAGS = $(ARCH) -O2 -nostdlib -ffunction-sections -fdata-sections -fomit-frame-pointer -std=gnu11 -Wall $(CUSTOMDEFINES) diff --git a/source/keys/keys.c b/source/keys/keys.c index fa93e85..8793d6b 100644 --- a/source/keys/keys.c +++ b/source/keys/keys.c @@ -231,8 +231,8 @@ void dump_keys() { gfx_clear_partial_grey(0x1B, 0, 1280); gfx_con_setpos(0, 0); - gfx_printf("[%kLo%kck%kpi%kck%k-R%kCM%k v%d.%d%k]\n\n", - colors[0], colors[1], colors[2], colors[3], colors[4], colors[5], 0xFFFF00FF, LP_VER_MJ, LP_VER_MN, 0xFFCCCCCC); + gfx_printf("[%kLo%kck%kpi%kck%k-R%kCM%k v%d.%d.%d%k]\n\n", + colors[0], colors[1], colors[2], colors[3], colors[4], colors[5], 0xFFFF00FF, LP_VER_MJ, LP_VER_MN, LP_VER_BF, 0xFFCCCCCC); u32 start_time = get_tmr_ms(), end_time,