mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-30 21:32:50 +00:00
Fix typos (#11361)
This commit is contained in:
parent
cd016be86e
commit
949e93bec7
@ -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.");
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user