Skip to content

Commit

Permalink
Merge pull request dolphin-emu#5492 from leoetlino/boot-cleanup
Browse files Browse the repository at this point in the history
Clean up the boot code
  • Loading branch information
leoetlino authored Jun 6, 2017
2 parents 096399d + d50b440 commit 591aade
Show file tree
Hide file tree
Showing 31 changed files with 604 additions and 615 deletions.
3 changes: 2 additions & 1 deletion Source/Android/jni/MainAndroid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include "Common/Logging/LogManager.h"
#include "Common/MsgHandler.h"

#include "Core/Boot/Boot.h"
#include "Core/BootManager.h"
#include "Core/ConfigManager.h"
#include "Core/Core.h"
Expand Down Expand Up @@ -794,7 +795,7 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_Run(JNIEnv*

// No use running the loop when booting fails
s_have_wm_user_stop = false;
if (BootManager::BootCore(s_filename.c_str(), SConfig::BOOT_DEFAULT))
if (BootManager::BootCore(BootParameters::GenerateFromFile(s_filename)))
{
static constexpr int TIMEOUT = 10000;
static constexpr int WAIT_STEP = 25;
Expand Down
Loading

0 comments on commit 591aade

Please sign in to comment.