Skip to content

Commit

Permalink
Update to mGBA 0.11-8602-2a0ed00d0.
Browse files Browse the repository at this point in the history
Enable UART standard output.
  • Loading branch information
Extrems committed Nov 20, 2024
1 parent 59db6c3 commit 266eaad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1289,8 +1289,10 @@ static uint16_t _pollGameInput(struct mGUIRunner *runner)

static void preinit(int argc, char **argv)
{
for (int chn = 0; chn < EXI_CHANNEL_2; chn++)
CON_EnableGecko(chn, FALSE);
CON_EnableBarnacle(EXI_CHANNEL_0, EXI_DEVICE_1);

for (int chan = 0; chan < EXI_CHANNEL_2; chan++)
CON_EnableGecko(chan, false);

puts("Enhanced mGBA © 2015-2024 Extrems' Corner.org");

Expand Down

0 comments on commit 266eaad

Please sign in to comment.