1
0
mirror of synced 2024-11-13 19:20:46 +01:00

Up the timeout

This commit is contained in:
Rin 2022-07-17 19:30:58 +01:00
parent 6d348703f7
commit 21b8ce3385
2 changed files with 2 additions and 1 deletions

View File

@ -144,6 +144,7 @@
<PrecompiledHeader>NotUsing</PrecompiledHeader> <PrecompiledHeader>NotUsing</PrecompiledHeader>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<CallingConvention>FastCall</CallingConvention> <CallingConvention>FastCall</CallingConvention>
<LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile> </ClCompile>
<Link> <Link>
<SubSystem>Windows</SubSystem> <SubSystem>Windows</SubSystem>

View File

@ -251,7 +251,7 @@ int BngRwReqWaitTouch(UINT a, int maxIntSomehow, UINT c, void (*callback)(int, i
// this is a really ugly hack, forgive me // this is a really ugly hack, forgive me
using namespace std::chrono_literals; using namespace std::chrono_literals;
std::this_thread::sleep_for(100ms); std::this_thread::sleep_for(250ms);
return 1; return 1;
} }
else { else {