diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-10-14 07:53:36 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-10-14 07:53:36 +0300 |
| commit | 3cf9e06b11f80d7253a876f03860c6b600b4c563 (patch) | |
| tree | 4d97a04e8d9ccf4589b9738e1c8f61f39be62f69 /Software/Visual_Studio/Tango.Emulations | |
| parent | eed7de9b180f1c4094c1e62c61a672971bb4ab03 (diff) | |
| download | Tango-3cf9e06b11f80d7253a876f03860c6b600b4c563.tar.gz Tango-3cf9e06b11f80d7253a876f03860c6b600b4c563.zip | |
Integrated ink filling status to external bridge secure clients.
Diffstat (limited to 'Software/Visual_Studio/Tango.Emulations')
| -rw-r--r-- | Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs index 5276aba8d..856b3b2d8 100644 --- a/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs +++ b/Software/Visual_Studio/Tango.Emulations/Emulators/MachineEmulator.cs @@ -1695,11 +1695,13 @@ namespace Tango.Emulations.Emulators { while (IsStarted) { - - Transporter.SendResponse(new StartInkFillingStatusResponse() + if (!_emulateCorruption) { - Status = InkFillingStatus - }, request.Container.Token); + Transporter.SendResponse(new StartInkFillingStatusResponse() + { + Status = InkFillingStatus + }, request.Container.Token); + } Thread.Sleep(2000); } |
