Преглед изворни кода

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.
Lioncash пре 4 година
родитељ
комит
ddda6ae776
1 измењених фајлова са 2 додато и 3 уклоњено
  1. 2 3
      src/input_common/drivers/tas_input.cpp

+ 2 - 3
src/input_common/drivers/tas_input.cpp

@@ -78,9 +78,8 @@ void Tas::LoadTasFiles() {
 }
 
 void Tas::LoadTasFile(size_t player_index, size_t file_index) {
-    if (!commands[player_index].empty()) {
-        commands[player_index].clear();
-    }
+    commands[player_index].clear();
+
     std::string file = Common::FS::ReadStringFromFile(
         Common::FS::GetYuzuPath(Common::FS::YuzuPath::TASDir) /
             fmt::format("script{}-{}.txt", file_index, player_index + 1),