This commit is contained in:
Malik Idrees Hasan Khan 2022-01-13 03:51:02 +05:30 committed by GitHub
parent cd016be86e
commit 949e93bec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -42,7 +42,7 @@ public:
// audio
const QString audio_out = tr("Cubeb uses a cross-platform approach and supports audio buffering, so it is the recommended option.\nXAudio2 uses native Windows sounds system, is the next best alternative.");
const QString audio_out_linux = tr("Cubeb uses a cross-platform approach and supports audio buffering, so it is the recommended option.\nIf it's not availiable, FAudio could be used instead.");
const QString audio_out_linux = tr("Cubeb uses a cross-platform approach and supports audio buffering, so it is the recommended option.\nIf it's not available, FAudio could be used instead.");
const QString audio_dump = tr("Saves all audio as a raw wave file. If unsure, leave this unchecked.");
const QString convert = tr("Uses 16-bit audio samples instead of default 32-bit floating point.\nUse with buggy audio drivers if you have no sound or completely broken sound.");
const QString downmix = tr("Uses chosen audio output instead of default 7.1 surround sound.\nUse downmix to stereo with stereo audio devices. Use 5.1 or higher only if you are using a surround sound audio system.");

View File

@ -52,7 +52,7 @@ namespace utils
std::vector<u8> data;
usz pos = umax;
// Checks if this strcuture is currently used for serialization
// Checks if this instance is currently used for serialization
bool is_writing() const
{
return pos == umax;
@ -133,7 +133,7 @@ namespace utils
return ::serialize(*this, obj);
}
// Enabled for fundamental types, enumerations and if specfied explicitly that type can be saved in pure bitwise manner
// Enabled for fundamental types, enumerations and if specified explicitly that type can be saved in pure bitwise manner
template <typename T> requires Bitcopy<T>
bool serialize(T& obj)
{

View File

@ -17,7 +17,7 @@ namespace utils
/**
* Reserve `size` bytes of virtual memory and returns it.
* The memory should be commited before usage.
* The memory should be committed before usage.
*/
void* memory_reserve(usz size, void* use_addr = nullptr);