Skip to content

Commit

Permalink
refactor rendering example
Browse files Browse the repository at this point in the history
  • Loading branch information
xCENTx committed Apr 17, 2024
1 parent bcfd08c commit 7c786cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/Rendering/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ DWORD WINAPI MainThread(LPVOID hInstance)
do
{
// Exit Key
if (GetAsyncKeyState(VK_END) & 1)
if (GetAsyncKeyState(VK_END) & 0x8000)
g_running = false;

} while (g_running);
Expand Down
8 changes: 4 additions & 4 deletions examples/Rendering/example_rendering.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
<OutDir>$(ProjectDir)\bin\$(Platform)</OutDir>
<IntDir>$(ProjectDir)\\bin\$(Platform)\$(Configuration)\</IntDir>
<OutDir>$(ProjectDir)\bin\</OutDir>
<IntDir>$(ProjectDir)\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<OutDir>$(ProjectDir)\bin\$(Platform)</OutDir>
<IntDir>$(ProjectDir)\\bin\$(Platform)\$(Configuration)\</IntDir>
<OutDir>$(ProjectDir)\bin\</OutDir>
<IntDir>$(ProjectDir)\$(Platform)\$(Configuration)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
Expand Down

0 comments on commit 7c786cd

Please sign in to comment.