mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 16:25:45 +00:00
core/hid: Only signal when needed
This commit is contained in:
parent
88cb39be9f
commit
00f654cd22
11 changed files with 242 additions and 155 deletions
|
@ -127,7 +127,7 @@ void Tas::WriteTasFile(std::u8string file_name) {
|
|||
std::string output_text;
|
||||
for (size_t frame = 0; frame < record_commands.size(); frame++) {
|
||||
const TASCommand& line = record_commands[frame];
|
||||
output_text += fmt::format("{} {} {} {} {}\n", frame, WriteCommandButtons(line.buttons),
|
||||
output_text += fmt::format("{} {} {} {}\n", frame, WriteCommandButtons(line.buttons),
|
||||
WriteCommandAxis(line.l_axis), WriteCommandAxis(line.r_axis));
|
||||
}
|
||||
const auto bytes_written = Common::FS::WriteStringToFile(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue