mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-24 23:37:24 -05:00
Remove slash I missed
This commit is contained in:
parent
4562e7f14d
commit
4c65f6e00c
2
Makefile
2
Makefile
|
|
@ -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
|
||||
|
||||
#---------------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user