Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3rdParty: let rt64 boot on windows and make inspector work....
Browse files Browse the repository at this point in the history
Rosalie241 committed Jun 11, 2024
1 parent f27c0ce commit 18a825a
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
@@ -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
@@ -157,7 +157,7 @@ namespace RT64 {
break;
}

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

frameMutex.lock();

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

0 comments on commit 18a825a

Please sign in to comment.