diff options
| author | 2020-12-02 23:08:43 -0800 | |
|---|---|---|
| committer | 2020-12-02 23:08:43 -0800 | |
| commit | 88089c87546b62536a27738f5ee03dff52fa76e9 (patch) | |
| tree | 5221c80d0ac3e7bbdb0c342098378e6c84951658 /src/common/wall_clock.cpp | |
| parent | Merge pull request #5002 from ameerj/nvdec-frameskip (diff) | |
| parent | audio_core: Make shadowing and unused parameters errors (diff) | |
| download | yuzu-88089c87546b62536a27738f5ee03dff52fa76e9.tar.gz yuzu-88089c87546b62536a27738f5ee03dff52fa76e9.tar.xz yuzu-88089c87546b62536a27738f5ee03dff52fa76e9.zip | |
Merge pull request #5000 from lioncash/audio-error
audio_core: Make shadowing and unused parameters errors
Diffstat (limited to 'src/common/wall_clock.cpp')
| -rw-r--r-- | src/common/wall_clock.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/wall_clock.cpp b/src/common/wall_clock.cpp index 452a2837e..a8c143f85 100644 --- a/src/common/wall_clock.cpp +++ b/src/common/wall_clock.cpp | |||
| @@ -17,8 +17,8 @@ using base_time_point = std::chrono::time_point<base_timer>; | |||
| 17 | 17 | ||
| 18 | class StandardWallClock final : public WallClock { | 18 | class StandardWallClock final : public WallClock { |
| 19 | public: | 19 | public: |
| 20 | StandardWallClock(u64 emulated_cpu_frequency, u64 emulated_clock_frequency) | 20 | explicit StandardWallClock(u64 emulated_cpu_frequency_, u64 emulated_clock_frequency_) |
| 21 | : WallClock(emulated_cpu_frequency, emulated_clock_frequency, false) { | 21 | : WallClock(emulated_cpu_frequency_, emulated_clock_frequency_, false) { |
| 22 | start_time = base_timer::now(); | 22 | start_time = base_timer::now(); |
| 23 | } | 23 | } |
| 24 | 24 | ||