Lowered the frequency of the Beeps down to 60hz, at higher volumes it could be downright painful.
Open to "how to rip games" section of quickstart, skipping install which is obviously completed
This commit is contained in:
parent
eaa5d61c0c
commit
8985abfcc9
|
@ -115,7 +115,7 @@ Emulator::Emulator(const std::filesystem::path& command_line,
|
||||||
uint64_t persistent_flags = GetPersistentEmulatorFlags();
|
uint64_t persistent_flags = GetPersistentEmulatorFlags();
|
||||||
if (!(persistent_flags & EmulatorFlagQuickstartShown)) {
|
if (!(persistent_flags & EmulatorFlagQuickstartShown)) {
|
||||||
LaunchWebBrowser(
|
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);
|
SetPersistentEmulatorFlags(persistent_flags | EmulatorFlagQuickstartShown);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -385,9 +385,9 @@ void Emulator::CheckMountWarning(const std::filesystem::path& path) {
|
||||||
// sounds, MessageBeep doesnt play, but beep does play
|
// sounds, MessageBeep doesnt play, but beep does play
|
||||||
|
|
||||||
std::thread beep_thread{[]() {
|
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
|
#if XE_PLATFORM_WIN32 == 1
|
||||||
Beep(4096, 500);
|
Beep(60, 500);
|
||||||
Sleep(50);
|
Sleep(50);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue