Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Oct 17, 2020
1 parent 010c36c commit 95c8c91
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"DEBUG",
"SWITCH",
"__SWITCH__",
"VERSION_STRING=\"3.7.14\""
"VERSION_STRING=\"3.7.15\""
],
"compilerPath": "F:/devkitPro/devkitA64/bin/aarch64-none-elf-g++",
"cStandard": "c11",
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ include $(DEVKITPRO)/libnx/switch_rules
#---------------------------------------------------------------------------------
VERSION_MAJOR := 3
VERSION_MINOR := 7
VERSION_MICRO := 14
VERSION_MICRO := 15
NIGHTLY :=

APP_TITLE := EdiZon SE
Expand Down
2 changes: 1 addition & 1 deletion source/guis/gui_about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ GuiAbout::GuiAbout() : Gui() {
threadCreate(&networkThread, getVersionInfoAsync, nullptr, nullptr, 0x2000, 0x2C, -2);
threadStart(&networkThread);
}
}
}

GuiAbout::~GuiAbout() {

Expand Down
2 changes: 1 addition & 1 deletion source/guis/gui_cheats.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ void GuiCheats::draw()
Gui::drawTextAligned(font14, 700, 142, currTheme.textColor, "Others", ALIGNED_LEFT);

ss.str("");
ss << "EdiZon SE : 3.7.14";
ss << "EdiZon SE : 3.7.15";
if (m_32bitmode)
ss << " 32 bit pointer mode";
Gui::drawTextAligned(font14, 900, 62, currTheme.textColor, ss.str().c_str(), ALIGNED_LEFT);
Expand Down
2 changes: 1 addition & 1 deletion source/guis/gui_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void GuiMain::draw() {
x = floor(++currItem / 2.0F) * 256;
}
}

Gui::drawRectangle(0, 0, Gui::g_framebuffer_width, 32, currTheme.selectedButtonColor);
Gui::drawShadow(0, 0, Gui::g_framebuffer_width, 32);

Expand Down

0 comments on commit 95c8c91

Please sign in to comment.