Remove slash I missed

This commit is contained in:
J-D-K 2018-09-22 16:37:41 -04:00
parent 4562e7f14d
commit 4c65f6e00c
3 changed files with 4 additions and 3 deletions

View File

@ -38,7 +38,7 @@ INCLUDES := inc
EXEFS_SRC := exefs_src
APP_TITLE := JKSV
APP_AUTHOR := JK_
APP_VERSION := 09/15/2018
APP_VERSION := 09/22/2018
ROMFS := romfs
#---------------------------------------------------------------------------------

View File

@ -249,7 +249,8 @@ namespace fs
{
if(list.isDir(i))
{
std::string newPath = path + "/" + list.getItem(i) + "/";
std::string newPath = path + list.getItem(i) + "/";
ui::showMessage(newPath);
delDir(newPath);
std::string delPath = path + list.getItem(i);

View File

@ -11,7 +11,7 @@
#include "util.h"
#include "file.h"
static std::string TITLE_TEXT = "JKSV - 09/15/2018";
static std::string TITLE_TEXT = "JKSV - 09/22/2018";
//background that can be drawn from "/JKSV/back.jpg"
//txtSide and fldSide are to fake alpha blending so the framerate doesn't suffer