Femamegp2x - How Do I Start With All - No Clones?


Corellian Corvette

Still Fresh
Joined
Apr 22, 2003
Messages
14
Age
52
Website
Visit site
I'd like femame to start with the groups unfiltered and "All-No Clones" set. According to the cfg file I can just change them.

I put these settings in the .cfg file and it's not working. My default is Group:Unfiltered but it's sorted by "Favorites"

Any help? What am I doing wrong?

Thanks!

---
Default-Filter-Group="Unfiltered"
#Default-Filter="All - No Clones"

Repeat-Delay=300
Repeat-Rate=75
Update-Image-Freq=250

Filter-Missing-Games=Yes

#Run-On-Exit=EXIT
#Run-On-Exit="/mnt/sd/gmenu2x/gmenu2x --startquit"
#Run-On-Exit="/usr/gp2x/gp2xmenu --boot --disable-autorun"

default-driver-location="standard"
driver-locations
{
standard = "./mame_gp2x.gpe"
fast = "./mame_gp2x_fast.gpe"
compat = "./mame_gp2x_compatible.gpe"
}

game-optimized-drivers
{
kangaroa = "./mame_gp2x.gpe"
kangarob = "./mame_gp2x.gpe"
kangaroo = "./mame_gp2x.gpe"
}


Filter-Group="Unfiltered" Enabled
{
"Favorites" FAVORITE EQUALS TRUE
"All" Desc REGEXP (.*)
"All - No Clones" CLONEOF REGEXP (^$)
}

Filter-Group="By Alphabet" Enabled
{
"#-B" Desc Starts with ( 1,2,3,4,5,6,7,8,9,0,A,B )
"C-E" Desc Starts with ( C,D,E )
"F-H" Desc Starts with ( F,G,H )
"I-L" Desc Starts with ( I,J,K,L )
"M-O" Desc Starts with ( M,N,O )
"P-R" Desc Starts with ( P,Q,R )
"S" Desc Starts with ( S )
"T" Desc Starts with ( T )
"U-Z" Desc Starts with ( U,V,W,X,,Y,Z )
}
---
 
Corellian Corvette said:
I'd like femame to start with the groups unfiltered and "All-No Clones" set. According to the cfg file I can just change them.

...

#Default-Filter="All - No Clones"

...

Filter-Group="Unfiltered" Enabled
{
"Favorites" FAVORITE EQUALS TRUE
"All" Desc REGEXP (.*)
"All - No Clones" CLONEOF REGEXP (^$)
}

The # comments the line out, so you have to remove it so it looks like this
Default-Filter="All - No Clones"

If that doesn't work, for whatever reason, simply reorder the unfiltered group so that No clones is the first one, like this...

Filter-Group="Unfiltered" Enabled
{
"All - No Clones" CLONEOF REGEXP (^$)
"Favorites" FAVORITE EQUALS TRUE
"All" Desc REGEXP (.*)
}
 
Last edited by a moderator:
Back
Top