diff --git a/Makefile b/Makefile index 55eec3e..bceb0eb 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ include $(DEVKITPRO)/libnx/switch_rules # NACP building is skipped as well. #--------------------------------------------------------------------------------- APP_TITLE := SysDVR Overlay -APP_VERSION := 1.0.14 +APP_VERSION := 1.0.15 TARGET := $(notdir $(CURDIR)) BUILD := build diff --git a/source/main.cpp b/source/main.cpp index 65bdf39..8d171df 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -3,7 +3,7 @@ //This is a version for the SysDVR Config app protocol, it's not shown anywhere and not related to the major version #define SYSDVR_VERSION_MIN 5 -#define SYSDVR_VERSION_MAX 17 +#define SYSDVR_VERSION_MAX 18 #define TYPE_MODE_USB 1 #define TYPE_MODE_TCP 2 #define TYPE_MODE_RTSP 4 @@ -55,7 +55,7 @@ class DvrOverlay : public tsl::Gui { versionString = std::to_string(version); if(version>SYSDVR_VERSION_MAX ||versionaddItem(getErrorDrawer("Unkown SysDVR Config API: v"+ versionString + list->addItem(getErrorDrawer("Unknown SysDVR Config API: v"+ versionString +"\nOnly Config API v"+std::to_string(SYSDVR_VERSION_MIN)+" to "+std::to_string(SYSDVR_VERSION_MAX)+" is supported"), getErrorDrawerSize()); frame->setContent(list); return frame; @@ -208,7 +208,7 @@ class DvrOverlay : public tsl::Gui { case TYPE_MODE_ERROR: return"Error"; default: - return"Unkown"; + return"Unknown"; } }