mic fix
This commit is contained in:
parent
c482c001ae
commit
8de1d52906
|
@ -581,7 +581,7 @@ static void openRecordingMovie(const char* fname)
|
|||
MovieRecord mr;
|
||||
|
||||
if(MicButtonPressed == 1)
|
||||
mr.commands=9;
|
||||
mr.commands=1;
|
||||
else
|
||||
mr.commands = 0;
|
||||
mr.pad = nds.pad;
|
||||
|
|
|
@ -60,7 +60,7 @@ public:
|
|||
//the disk format will support up to 64bit if necessary
|
||||
uint8 commands;
|
||||
bool command_reset() { return (commands&MOVIECMD_RESET)!=0; }
|
||||
bool command_microphone() { return (commands&2)!=0; }
|
||||
bool command_microphone() { return (commands&1)!=0; }
|
||||
|
||||
void toggleBit(int bit)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue