Skip to content

Commit

Permalink
Prepare for 0.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
proconsule committed Jan 4, 2024
1 parent 138d6cb commit 124160b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ GITREV:= -D'GITREV="$(shell git rev-parse --short HEAD)"'
VERSION_MAJOR := 0
VERSION_MINOR := 9
VERSION_MICRO := 0
RELEASETYPE := -DRELEASE_TYPE=1
RELEASETYPE := -DRELEASE_TYPE=0

APP_TITLE := NXMP (OpenGL)
APP_AUTHOR := proconsule and darkxex
Expand Down
2 changes: 1 addition & 1 deletion Makefile.deko3d
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ GITREV:= -D'GITREV="$(shell git rev-parse --short HEAD)"'
VERSION_MAJOR := 0
VERSION_MINOR := 9
VERSION_MICRO := 0
RELEASETYPE := -DRELEASE_TYPE=1
RELEASETYPE := -DRELEASE_TYPE=0

APP_TITLE := NXMP (deko3d)
APP_AUTHOR := proconsule and darkxex
Expand Down
12 changes: 6 additions & 6 deletions source/devoptabsfs/m3u8fs/m3u8fs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ static std::string m3u8_format_args = "#EXTM3U\n#EXTINF:-1,%s\n%s\n";

int CM3U8FS::connect(){

m3uabspath = connect_url.substr(0,connect_url.find_last_of("/")+1);
struct stat st;
if (stat(connect_url.c_str(), &st) == 0) {

Expand Down Expand Up @@ -123,10 +124,10 @@ int CM3U8FS::connect(){
tmpvector.push_back(entry);
idx++;
/*
printf("STRING: %s\n",m.str(0).c_str());
printf("STRING: %s\n",m.str(1).c_str());
printf("STRING: %s\n",m.str(2).c_str());
printf("STRING: %s\n",m.str(3).c_str());
printf("STRING0: %s\n",m.str(0).c_str());
printf("STRING1: %s\n",m.str(1).c_str());
printf("STRING2: %s\n",m.str(2).c_str());
printf("STRING3: %s\n",m.str(3).c_str());
*/
}

Expand Down Expand Up @@ -284,8 +285,7 @@ int CM3U8FS::m3u8fs_stat(struct _reent *r, const char *file, struct stat *st) {
return 0;
}
}



return -1;
}

Expand Down
2 changes: 1 addition & 1 deletion source/devoptabsfs/m3u8fs/m3u8fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class CM3U8FS{




std::string m3uabspath = "";

struct CM3U8FSFile {
int fileidx;
Expand Down

0 comments on commit 124160b

Please sign in to comment.