Add beep sound to platforms with no beep

This commit is contained in:
elasota
2021-05-09 23:45:27 -04:00
parent d54ad576bc
commit 24169507bd
21 changed files with 85 additions and 25 deletions

View File

@@ -136,8 +136,9 @@ void *GpSystemServices_Web::CreateThread(ThreadFunc_t threadFunc, void *context)
return nullptr;
}
void GpSystemServices_Web::Beep() const
bool GpSystemServices_Web::Beep() const
{
return false;
}
bool GpSystemServices_Web::IsTouchscreen() const
@@ -165,6 +166,11 @@ bool GpSystemServices_Web::IsFullscreenOnStartup() const
return false;
}
bool GpSystemServices_Web::HasNativeFileManager() const
{
return false;
}
unsigned int GpSystemServices_Web::GetCPUCount() const
{
return SDL_GetCPUCount();