fix(mgba): updated submodule

This commit is contained in:
Laureηt 2022-02-09 13:50:59 +01:00
parent 640c760ca0
commit bbb1402f4e
No known key found for this signature in database
GPG key ID: D88C6B294FD40994
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ RUN \
RUN \ RUN \
cd /code \ cd /code \
# clone mgba # clone mgba
&& git clone https://github.com/mgba-emu/mgba.git --branch 0.9 mgba \ && git clone https://github.com/mgba-emu/mgba.git mgba \
# create build directory # create build directory
&& mkdir mgba/build \ && mkdir mgba/build \
# go to the build directory # go to the build directory

2
mgba

@ -1 +1 @@
Subproject commit 8c802991bba6c8d20e3292f5915d7f21a7917e7c Subproject commit 0676769b6897408fa009c8a6cb29f1824fd4f6e7

View file

@ -91,7 +91,7 @@ def next_action():
r.mset(KEYS_RESET) r.mset(KEYS_RESET)
return votes.index(max(votes)) return votes.index(max(votes))
else: else:
return -1 return -1 # TODO: add random
def state_manager(loop: asyncio.AbstractEventLoop): def state_manager(loop: asyncio.AbstractEventLoop):