From bbb1402f4e50c68cd189680500191d19719958b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Wed, 9 Feb 2022 13:50:59 +0100 Subject: [PATCH] fix(mgba): updated submodule --- Dockerfile | 2 +- mgba | 2 +- src/emulator.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 61cdef0..ba86ffe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN \ RUN \ cd /code \ # 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 && mkdir mgba/build \ # go to the build directory diff --git a/mgba b/mgba index 8c80299..0676769 160000 --- a/mgba +++ b/mgba @@ -1 +1 @@ -Subproject commit 8c802991bba6c8d20e3292f5915d7f21a7917e7c +Subproject commit 0676769b6897408fa009c8a6cb29f1824fd4f6e7 diff --git a/src/emulator.py b/src/emulator.py index eb4ff21..d1b7850 100644 --- a/src/emulator.py +++ b/src/emulator.py @@ -91,7 +91,7 @@ def next_action(): r.mset(KEYS_RESET) return votes.index(max(votes)) else: - return -1 + return -1 # TODO: add random def state_manager(loop: asyncio.AbstractEventLoop):