Start CashInput with UINT_MAX (PayUp)

This commit is contained in:
2023-05-23 10:21:00 +02:00
parent 2ac0f5b275
commit 584e3af035

View File

@@ -58,6 +58,8 @@ void ATBDeviceControllerPlugin::requestStartCashInput(const QString & amount)
uint32_t amountInt = static_cast<uint32_t>(amount.toUInt());
if (amountInt == 0) amountInt = UINT_MAX;
hw->cash_startPayment(amountInt);
}