FCEU_SetBotMode() in input.cpp now calls UpdateExternalButton() in basicbot.cpp to update a label in GUI.

This commit is contained in:
qfox 2006-08-21 13:40:13 +00:00
parent cd7afa49fa
commit b15942881d
1 changed files with 5 additions and 0 deletions

View File

@ -33,6 +33,10 @@
#include "vsuni.h" #include "vsuni.h"
#include "fds.h" #include "fds.h"
#include "drivers/win/basicbot.h" // qfox: For UpdateExternalButton(), called when the
// botmode state changes, to update a label in gui.
// Maybe enclose this in ifdef _USE_SHARED_MEMORY_ ?
extern INPUTC *FCEU_InitZapper(int w); extern INPUTC *FCEU_InitZapper(int w);
extern INPUTC *FCEU_InitPowerpadA(int w); extern INPUTC *FCEU_InitPowerpadA(int w);
extern INPUTC *FCEU_InitPowerpadB(int w); extern INPUTC *FCEU_InitPowerpadB(int w);
@ -182,6 +186,7 @@ int FCEU_BotMode()
void FCEU_SetBotMode(int x) void FCEU_SetBotMode(int x)
{ {
BotMode = x; BotMode = x;
UpdateExternalButton();
} }
void FCEU_DrawInput(uint8 *buf) void FCEU_DrawInput(uint8 *buf)