ported previous

This commit is contained in:
p989 2009-06-16 18:43:36 +00:00
parent 08628592cf
commit 5688e953ca
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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)
{ {