- Joined
- Jan 14, 2012
- Messages
- 6,052
- Reaction score
- 2,554
- Trophies
- 0
- Location
- Ideas factory :)
- Website
- ccabz.wordpress.com
- XP
- 3,123
- Country








we should shout it out loudly
oh and it's online https://www.dropbox.com/s/q67zgduktjowzl2/Ploader4_Addon for the Masterpiece.rar
![]()



Yea I'm curious myself as to why v5.1.5 is missing/deprecated? That's the WAD I customized with my own music loop and never had a problem.Sure, no need to ask
I didn't try to show the missing ones yet but I think they will show if I do a clean install again (might try that tomorrow)
I see the wad on googlecode download page is still v5. why did u remove v5.1.5? is there a bug or something?
I was also planning to make a premade "uneek2o v96 nand" renamed to pln2o but since on the fly uneek launching is imminent I guess the ones I already made can do the trick![]()


It means the when a search is run on one folder it then runs itself again on all the folders it finds in that folder. Think of it as an exhaustive subfolder search.What exactly is recursive?
diff -u old/browserEmu.c new/browserEmu.c
--- old/browserEmu.c2013-05-08 23:42:52.627558502 -0400
+++ new/browserEmu.c2013-05-08 10:18:18.793459446 -0400
@@ -663,15 +663,14 @@
int i = startidx;
DIR *pdir;
struct dirent *pent;
-char fn[300];
int updater = 0;
-char ext[256];
+char *ext;
char *p;
p = Plugins_Get(type, PIN_ENABLED);
if (!p || *p == '0') return 0;
-strcpy (ext, Plugins_Get(type, PIN_EXT));
+ext = Plugins_Get(type, PIN_EXT);
mt_Lock();
pdir=opendir(path);
@@ -679,9 +678,20 @@
while ((pent=readdir(pdir)) != NULL)
{
+if (strcmp (pent->d_name, ".") == 0 || strcmp (pent->d_name, "..") == 0)
+continue;
+
+if (pent->d_type == DT_DIR) {
+char newpath[300];
+sprintf(newpath, "%s/%s", path, pent->d_name);
+Debug ("newpath: %s", newpath);
+i += BrowsePluginFolder(type, i, newpath);
+continue;
+}
+
if (i >= EMUMAX)
break;
-
+
// Skip it
if (strcmp (pent->d_name, ".") == 0 || strcmp (pent->d_name, "..") == 0)
continue;
@@ -698,6 +708,8 @@
if (!ms_strstr (ext, p))
continue;
+{
+char fn[300];
sprintf (fn, "%s/%s", path, pent->d_name);
//Debug (" > %s", fn);
@@ -712,6 +724,7 @@
continue;
}
strcpy (emus[i].name, fn);
+}
emus[i].type = type;

Yea I'm curious myself as to why v5.1.5 is missing/deprecated? That's the WAD I customized with my own music loop and never had a problem.
Abz does your masterpiece d/load have the mplayer-ce config fix already?I plan to d/load it when I get home and wanted to know if I need to make any minute changesTIA
Whoops silly me it's not out yet, I could've sworn it was out dunno wtf I was lookin' at![]()
since yesterday: http://dl.dropboxusercontent.com/u/101209384/MasterPiece/pl4.html
See I knew it! Don't know what happened I was on mobile and somehow I must have missed the post. Still gotta fix that splash screen to postLoader thoughsince yesterday: http://dl.dropboxusercontent.com/u/101209384/MasterPiece/pl4.html
mplayer_ce argument fixed also as soon as stfour reported it
the old argument works fine in WF but I can also change it in my next update




