Merge pull request #183 from chrisps/gentlebeep

Gentle Beep
This commit is contained in:
chrisps 2023-07-26 17:52:51 -04:00 committed by GitHub
commit f304ef5357
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -115,7 +115,7 @@ Emulator::Emulator(const std::filesystem::path& command_line,
uint64_t persistent_flags = GetPersistentEmulatorFlags();
if (!(persistent_flags & EmulatorFlagQuickstartShown)) {
LaunchWebBrowser(
"https://github.com/xenia-canary/xenia-canary/wiki/Quickstart");
"https://github.com/xenia-canary/xenia-canary/wiki/Quickstart#how-to-rip-games");
SetPersistentEmulatorFlags(persistent_flags | EmulatorFlagQuickstartShown);
}
}
@ -385,9 +385,9 @@ void Emulator::CheckMountWarning(const std::filesystem::path& path) {
// sounds, MessageBeep doesnt play, but beep does play
std::thread beep_thread{[]() {
for (uint32_t i = 0; i < 4; ++i) {
for (uint32_t i = 0; i < 2; ++i) {
#if XE_PLATFORM_WIN32 == 1
Beep(4096, 500);
Beep(60, 500);
Sleep(50);
#endif
}