ported previous
This commit is contained in:
parent
08628592cf
commit
5688e953ca
|
@ -581,7 +581,7 @@ static void openRecordingMovie(const char* fname)
|
||||||
MovieRecord mr;
|
MovieRecord mr;
|
||||||
|
|
||||||
if(MicButtonPressed == 1)
|
if(MicButtonPressed == 1)
|
||||||
mr.commands=9;
|
mr.commands=1;
|
||||||
else
|
else
|
||||||
mr.commands = 0;
|
mr.commands = 0;
|
||||||
mr.pad = nds.pad;
|
mr.pad = nds.pad;
|
||||||
|
|
|
@ -60,7 +60,7 @@ public:
|
||||||
//the disk format will support up to 64bit if necessary
|
//the disk format will support up to 64bit if necessary
|
||||||
uint8 commands;
|
uint8 commands;
|
||||||
bool command_reset() { return (commands&MOVIECMD_RESET)!=0; }
|
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)
|
void toggleBit(int bit)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue