View Single Post
Old October 20th, 2007   #50 (permalink)
Squall-Leonhart
VBA-M Team
 
Squall-Leonhart's Avatar
 
Join Date: Feb 2006
Location: Australia
Posts: 5,012
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;

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