| 15 | namespace InputRec |
| 16 | { |
| 17 | void log(const std::string& log, const float duration) |
| 18 | { |
| 19 | if (!log.empty()) |
| 20 | { |
| 21 | recordingConLog(fmt::format("[REC]: {}\n", log)); |
| 22 | Host::AddIconOSDMessage("input_rec_log", ICON_PF_ANALOG_LEFT_RIGHT, log, duration); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | void consoleLog(const std::string& log) |
| 27 | { |
no test coverage detected