View Single Post
Old October 20th, 2007   #50 (permalink)
Squall-Leonhart
Behind ur girlfriend :D
 
Squall-Leonhart's Avatar
 
Join Date: Feb 2006
Location: Sydney, Australia
Posts: 18,832
Windows XP
Microsoft Xbox S-type using XBCD 0.2.6

even if i assign the x button to another button that works (such as the one y is assigned to) it doesn't work.

i was able to get it to work before, somehow, though i can't for the life of me work out how, or repeat it.

the way i know somethings wrong, is that when the plugin is enabled, the x button assigned in the main input settings doesn't work either.

hey Nherve, have you tried

Code:
            case 0: //X
                val&=~(1<<15);
                break;
            case 1: //Y
                val&=~(1<<17);
                break;
            case 12: //Debug
                val&=(1<<18);
                break;
            default: //Others
                val&=~(1<<(i-2));
                break;
            }
        }else{
            switch(i){
            case 0: //X
                val|=(1<<15);
                break;
            case 1: //Y
                val|=(1<<17);
                break;
            case 12: //Debug
                val|=(1<<18);
                break;
            default: //Others
                val|=(1<<(i-2));
                break;
__________________


VBA-M | Xtemu | NGOHQ | Post Impact Productions | TNHW | XBCD 0.2.6 | Satanic666's Emulator Compiles
Don't be a NOOB, READ THE NGEmu/EmuForums Rules of Conduct
Need Help with ePSXe? This is your first stop!.

If you don't post all the required information, you don't get help.
Everytime someone posts a romsite, God kills a beautiful woman.

Last edited by Squall-Leonhart; October 20th, 2007 at 15:57.. Reason: Automerged Doublepost
Squall-Leonhart is offline   Reply With Quote