I have been trying to get The Lost World working with a mouse as input but I am having real trouble.
There are two issues:
First, I cannot get the Y axis to register at all. The X axis and trigger work fine, so I think I have the controls set up right. In the test menu the 1st player seems to also be slightly affecting the 2nd player targeting for some reason. 2nd player controls haven't been set up yet at all.
Second, in the test menu > input test, the coin button '5' registers as the start button. The start button I have configured, '1', does nothing. Although it works in game.
All other games I have tested work as they should.
The command line I am using:
Supermodel.exe -fullscreen -res=1920,1080 -input-system=rawinput "lostwsga.zip"
The relevant parts of Supermodel.ini:
- Code: Select all
; Common
InputStart1 = "KEY_1,JOY1_BUTTON9"
InputStart2 = "KEY_2,JOY2_BUTTON9"
InputCoin1 = "KEY_5,JOY1_BUTTON10"
InputCoin2 = "KEY_6,JOY2_BUTTON10"
InputServiceA = "KEY_F2"
InputServiceB = "KEY_0"
InputTestA = "KEY_F1"
InputTestB = "KEY_9"
; Light guns (Lost World)
InputGunLeft = "NONE" ; digital, move gun left
InputGunRight = "NONE" ; digital, move gun right
InputGunUp = "NONE" ; digital, move gun up
InputGunDown = "NONE" ; digital, move gun down
InputGunX = "MOUSE3_XAXIS" ; analog, full X axis
InputGunY = "MOUSE3_YAXIS" ; analog, full Y axis
InputTrigger = "MOUSE3_LEFT_BUTTON"
InputOffscreen = "MOUSE3_RIGHT_BUTTON" ; point off-screen
InputAutoTrigger = 0 ; automatic reload when off-screen
InputGunLeft2 = "NONE"
InputGunRight2 = "NONE"
InputGunUp2 = "NONE"
InputGunDown2 = "NONE"
InputGunX2 = "NONE"
InputGunY2 = "NONE"
InputTrigger2 = "NONE"
InputOffscreen2 = "NONE"
InputAutoTrigger2 = 0
; Analog guns (Ocean Hunter, LA Machineguns)
InputAnalogGunLeft = "NONE" ; digital, move gun left
InputAnalogGunRight = "NONE" ; digital, move gun right
InputAnalogGunUp = "NONE" ; digital, move gun up
InputAnalogGunDown = "NONE" ; digital, move gun down
InputAnalogGunX = "MOUSE3_XAXIS" ; analog, full X axis
InputAnalogGunY = "MOUSE3_YAXIS" ; analog, full Y axis
InputAnalogTriggerLeft = "MOUSE3_LEFT_BUTTON"
InputAnalogTriggerRight = "MOUSE3_RIGHT_BUTTON"
InputAnalogGunLeft2 = "NONE"
InputAnalogGunRight2 = "NONE"
InputAnalogGunUp2 = "NONE"
InputAnalogGunDown2 = "NONE"
InputAnalogGunX2 = "NONE"
InputAnalogGunY2 = "NONE"
InputAnalogTriggerLeft2 = "NONE"
InputAnalogTriggerRight2 = "NONE"
Please help!