Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -55,7 +55,7 @@ class DvrOverlay : public tsl::Gui {
versionString = std::to_string(version);

if(version>SYSDVR_VERSION_MAX ||version<SYSDVR_VERSION_MIN) {
list->addItem(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;
Expand Down Expand Up @@ -208,7 +208,7 @@ class DvrOverlay : public tsl::Gui {
case TYPE_MODE_ERROR:
return"Error";
default:
return"Unkown";
return"Unknown";
}
}

Expand Down