From 952440b17d8ccf39ebc57991a43b506138b71335 Mon Sep 17 00:00:00 2001 From: p989 Date: Mon, 8 Jun 2009 22:53:58 +0000 Subject: [PATCH] adjusted mic command number --- desmume/src/movie.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/desmume/src/movie.h b/desmume/src/movie.h index 19b829166..1e0c9bf0b 100644 --- a/desmume/src/movie.h +++ b/desmume/src/movie.h @@ -59,7 +59,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&9)!=0; } + bool command_microphone() { return (commands&2)!=0; } void toggleBit(int bit) { @@ -195,5 +195,6 @@ bool mov_loadstate(std::istream* is, int size); void LoadFM2_binarychunk(MovieData& movieData, std::istream* fp, int size); extern bool movie_readonly; extern bool ShowInputDisplay; +extern int MicButtonPressed; void FCEUI_MakeBackupMovie(bool dispMessage); #endif