Skip to content

Commit

Permalink
Disabled multithreading
Browse files Browse the repository at this point in the history
  • Loading branch information
KiritoDv authored and Kenix3 committed Mar 22, 2022
1 parent 1fed433 commit d116148
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OTRGui/src/game/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Vector2 dragOffset;
std::string sohFolder = NULLSTR;
bool extracting = false;
bool rom_ready = false;
bool single_thread = false;
bool single_thread = true;
bool hide_second_btn = false;
RomVersion version;
const char* patched_rom = "tmp/rom.z64";
Expand Down Expand Up @@ -127,7 +127,7 @@ void OTRGame::draw() {
UIUtils::GuiShadowText(("Rom Type: " + version.version).c_str(), 32, text_y, 10, WHITE, BLACK);
UIUtils::GuiShadowText("Tool Version: 1.0", 32, text_y + 15, 10, WHITE, BLACK);
UIUtils::GuiShadowText("OTR Version: 1.0", 32, text_y + 30, 10, WHITE, BLACK);
UIUtils::GuiToggle(&single_thread, "Single Thread", 32, text_y + 40, currentStep != NULLSTR);
// UIUtils::GuiToggle(&single_thread, "Single Thread", 32, text_y + 40, currentStep != NULLSTR);

if(!hide_second_btn && UIUtils::GuiIconButton("Folder", "Open\nShip Folder", 109, 50, currentStep != NULLSTR, "Select your Ship of Harkinian Folder\n\nYou could use another folder\nfor development purposes")) {
const std::string path = NativeFS->LaunchFileExplorer(LaunchType::FOLDER);
Expand Down

0 comments on commit d116148

Please sign in to comment.