summaryrefslogtreecommitdiffstats
path: root/client/x11/platform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'client/x11/platform.cpp')
-rw-r--r--client/x11/platform.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/x11/platform.cpp b/client/x11/platform.cpp
index bb8704c4..6a374835 100644
--- a/client/x11/platform.cpp
+++ b/client/x11/platform.cpp
@@ -3431,20 +3431,20 @@ void Platform::reset_cursor_pos()
}
WaveRecordAbstract* Platform::create_recorder(RecordClient& client,
- uint32_t sampels_per_sec,
+ uint32_t samples_per_sec,
uint32_t bits_per_sample,
uint32_t channels,
uint32_t frame_size)
{
- return new WaveRecorder(client, sampels_per_sec, bits_per_sample, channels, frame_size);
+ return new WaveRecorder(client, samples_per_sec, bits_per_sample, channels, frame_size);
}
-WavePlaybackAbstract* Platform::create_player(uint32_t sampels_per_sec,
+WavePlaybackAbstract* Platform::create_player(uint32_t samples_per_sec,
uint32_t bits_per_sample,
uint32_t channels,
uint32_t frame_size)
{
- return new WavePlayer(sampels_per_sec, bits_per_sample, channels, frame_size);
+ return new WavePlayer(samples_per_sec, bits_per_sample, channels, frame_size);
}
void XPlatform::on_focus_in()