Skip to content

Commit

Permalink
3rdParty: let rt64 boot on windows and make inspector work....
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosalie241 committed May 29, 2024
1 parent f466f37 commit 37858f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/3rdParty/rt64/src/gui/rt64_inspector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ namespace RT64 {
ImPlot::CreateContext();
ImGui::StyleColorsDark();

# ifdef _WIN32
# if defined(_WIN32) && !defined(RT64_BUILD_PLUGIN)
RenderWindow renderWindow = swapChain->getWindow();
ImGui_ImplWin32_Init(renderWindow);
# endif
Expand Down Expand Up @@ -157,7 +157,7 @@ namespace RT64 {
break;
}

# ifdef _WIN32
# if defined(_WIN32) && !defined(RT64_BUILD_PLUGIN)
ImGui_ImplWin32_Shutdown();
# else
// if mupen64plus, dont assert...
Expand All @@ -179,7 +179,7 @@ namespace RT64 {

frameMutex.lock();

# ifdef _WIN32
# if defined(_WIN32) && !defined(RT64_BUILD_PLUGIN)
ImGui_ImplWin32_NewFrame();
# else
// ????????
Expand Down

0 comments on commit 37858f9

Please sign in to comment.