2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 18:24:55 +00:00

Update submodules

This commit is contained in:
Jack Andersen
2017-01-06 22:29:38 -10:00
parent 6925ba3f77
commit 3aeca76c2e
4 changed files with 6 additions and 5 deletions

View File

@@ -183,7 +183,10 @@ void CGBASupport::Update(float dt)
case EPhase::StartJoyBusBoot:
x34_phase = EPhase::PollJoyBusBoot;
if (m_endpoint->GBAJoyBootAsync(x40_siChan * 2, 2,
x2c_buffer.get(), x28_fileSize, &x3c_status, JoyBootDone) != jbus::GBA_READY)
x2c_buffer.get(), x28_fileSize, &x3c_status,
std::bind(JoyBootDone,
std::placeholders::_1,
std::placeholders::_2)) != jbus::GBA_READY)
x34_phase = EPhase::Failed;
break;