mirror of https://github.com/mgba-emu/mgba.git
Fix typo in type
This commit is contained in:
parent
5bbf7f2308
commit
a214481b76
|
@ -28,7 +28,7 @@ static const char* ERROR_MISSING_ARGS = "Arguments missing";
|
||||||
|
|
||||||
static struct CLIDebugger* _activeDebugger;
|
static struct CLIDebugger* _activeDebugger;
|
||||||
|
|
||||||
typedef void (DebuggerComamnd)(struct CLIDebugger*, struct DebugVector*);
|
typedef void (DebuggerCommand)(struct CLIDebugger*, struct DebugVector*);
|
||||||
|
|
||||||
static void _breakInto(struct CLIDebugger*, struct DebugVector*);
|
static void _breakInto(struct CLIDebugger*, struct DebugVector*);
|
||||||
static void _continue(struct CLIDebugger*, struct DebugVector*);
|
static void _continue(struct CLIDebugger*, struct DebugVector*);
|
||||||
|
@ -47,7 +47,7 @@ static void _breakIntoDefault(int signal);
|
||||||
|
|
||||||
static struct {
|
static struct {
|
||||||
const char* name;
|
const char* name;
|
||||||
DebuggerComamnd* command;
|
DebuggerCommand* command;
|
||||||
} _debuggerCommands[] = {
|
} _debuggerCommands[] = {
|
||||||
{ "b", _setBreakpoint },
|
{ "b", _setBreakpoint },
|
||||||
{ "break", _setBreakpoint },
|
{ "break", _setBreakpoint },
|
||||||
|
|
Loading…
Reference in New Issue