Build Your Own Arcade Controls Forum
Software Support => GroovyMAME => Topic started by: Jollywest on November 22, 2015, 05:19:07 pm
-
I've recently successfully installed GA onto a USB Flash Drive, and I'm using it on a ATI HD4350/JPAC/Hantarex Polo 1 25" setup.
GM is working great, running the sample roms at their native refresh rates.
The Frontend however, be it either ADVmenuPLUS or Wah!Cade is running at 640x480 interlaced and I can't seem to alter this to a non-interlaced resolution.
When I run $ xrandr from a terminal window the only selectable mode is 640x480.
Any ideas please?
-
The resolution these frontends are using is controlled by a modeline that's inside the xorg.conf file. Try editing that file and add another one as you like. Then it's a matter of setting up advmenu to use it.
-
Spot on Calamity, got it working... cheers! :applaud: ... as you can probably tell, I'm very much a Linux newb ;)
-
These are the two modeline I am using to accommodate X screen resolution.
ModeLine "648x480x60.00" 13.129200 648 672 736 840 480 482 488 521 -HSync -VSync interlace
ModeLine "720x576x50.00" 14.797200 720 752 824 944 576 583 589 627 -HSync -VSync interlace
-
Jolly can you show your xorg.conf file text
I'd like to get my groovy arcade front end running in a native arcade resolution.
Which arcade native resolution do we think will look the best?
TY!!
Sent from my iPhone using Tapatalk
-
Not sure which resolution is best yet, I'm just using 320 x 240 @ 54 for testing at the min.
I'm using Wah!cade as the frontend and had to knock up a quick custom 320 x 240 layout with the editor, as none of the layouts that came bundled with Wah!cade showed properly at that resolution.
Just out the house at the mo, but will post the xorg.conf file when I get back.
-
Here's what's in the Xorg.conf file;
All I did was add a 320x240 modeline at the bottom and put a hash in front of the 640x480 one.
To revert back to 640x480 just remove the hash.
This is for a Hantarex Polo 1 25" arcade monitor.
# Config for polo Monitor and ati Video Card
Section "ServerLayout"
Identifier "General"
Screen 0
"Screen0" 0 0
InputDevice "WiiMote0"
InputDevice "WiiMote1"
EndSection
Section "InputDevice"
Identifier "WiiMote0"
Driver "evdev"
Option "Device" "/dev/input/event7"
Option "SendCoreEvents" "True"
EndSection
Section "InputDevice"
Identifier "WiiMote1"
Driver "evdev"
Option "Device" "/dev/input/event8"
Option "SendCoreEvents" "True"
EndSection
Section "Monitor"
Identifier "DVI-0"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 15-50
VertRefresh 40-80
Option "DPMS" "False"
Option "DefaultModes" "False"
UseModes "Modeline"
EndSection
Section "Device"
Identifier "Card0"
VendorName "Unknown"
BoardName "Unknown"
Driver "ati"
#Option "GLXVBlank" "true"
BusID "PCI:01:00:0"
Option "ModeDebug" "true"
Option "monitor-DVI-0" "DVI-0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "DVI-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Modes"
Identifier "Modeline"
Modeline "320x240_54.00" 6.630 320 336 368 424 240 256 259 289 -hsync -vsync
#Modeline "640x480_60.00" 12.980 640 664 728 832 480 482 487 521 interlace -hsync -vsync
EndSection