| 1027 | } |
| 1028 | |
| 1029 | void SetMsg(const std::string &msg) override { |
| 1030 | rpcsx_android.warning("ProgressMessageDialog::SetMsg(%s)", msg); |
| 1031 | invokeSync([this, msg](JNIEnv *env) { |
| 1032 | Progress(env, progressId).report(getValue(), max, msg); |
| 1033 | }); |
| 1034 | } |
| 1035 | |
| 1036 | void ProgressBarSetMsg(u32 progressBarIndex, |
| 1037 | const std::string &msg) override { |
nothing calls this directly
no test coverage detected