diff options
| author | 2021-12-13 11:19:24 -0500 | |
|---|---|---|
| committer | 2021-12-13 11:45:18 -0500 | |
| commit | ddda6ae776e0fab22a3cf70a9f4f5a87df86fda8 (patch) | |
| tree | 6e24c10dedaa69e521d3945f8f6192047bad94a6 /src/input_common/drivers/tas_input.cpp | |
| parent | tas_input: Remove unnecessary includes (diff) | |
| download | yuzu-ddda6ae776e0fab22a3cf70a9f4f5a87df86fda8.tar.gz yuzu-ddda6ae776e0fab22a3cf70a9f4f5a87df86fda8.tar.xz yuzu-ddda6ae776e0fab22a3cf70a9f4f5a87df86fda8.zip | |
tas_input: Execute clear() even if empty
clear() when empty is simply a no-op, so we can get rid of the check
here and let the stdlib do it for us.
Diffstat (limited to 'src/input_common/drivers/tas_input.cpp')
| -rw-r--r-- | src/input_common/drivers/tas_input.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/input_common/drivers/tas_input.cpp b/src/input_common/drivers/tas_input.cpp index d14a43b9e..bd4e411c9 100644 --- a/src/input_common/drivers/tas_input.cpp +++ b/src/input_common/drivers/tas_input.cpp | |||
| @@ -78,9 +78,8 @@ void Tas::LoadTasFiles() { | |||
| 78 | } | 78 | } |
| 79 | 79 | ||
| 80 | void Tas::LoadTasFile(size_t player_index, size_t file_index) { | 80 | void Tas::LoadTasFile(size_t player_index, size_t file_index) { |
| 81 | if (!commands[player_index].empty()) { | 81 | commands[player_index].clear(); |
| 82 | commands[player_index].clear(); | 82 | |
| 83 | } | ||
| 84 | std::string file = Common::FS::ReadStringFromFile( | 83 | std::string file = Common::FS::ReadStringFromFile( |
| 85 | Common::FS::GetYuzuPath(Common::FS::YuzuPath::TASDir) / | 84 | Common::FS::GetYuzuPath(Common::FS::YuzuPath::TASDir) / |
| 86 | fmt::format("script{}-{}.txt", file_index, player_index + 1), | 85 | fmt::format("script{}-{}.txt", file_index, player_index + 1), |