mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-05-09 04:13:28 -05:00
Merge 4470534dc5 into d19952cc11
This commit is contained in:
commit
165b15817e
|
|
@ -480,7 +480,6 @@ object NativeLibrary {
|
|||
fun displayAlertMsg(
|
||||
caption: String, text: String, yesNo: Boolean, isWarning: Boolean, nonBlocking: Boolean
|
||||
): Boolean {
|
||||
Log.error("[NativeLibrary] Alert: $text")
|
||||
val emulationActivity = emulationActivityRef.get()
|
||||
var result = false
|
||||
|
||||
|
|
|
|||
|
|
@ -202,6 +202,8 @@ std::unique_ptr<GBAHostInterface> Host_CreateGBAHost(std::weak_ptr<HW::GBA::Core
|
|||
|
||||
static bool MsgAlert(const char* caption, const char* text, bool yes_no, Common::MsgType style)
|
||||
{
|
||||
__android_log_print(ANDROID_LOG_ERROR, DOLPHIN_TAG, "[NativeLibrary] Alert: %s", text);
|
||||
|
||||
JNIEnv* env = IDCache::GetEnvForThread();
|
||||
|
||||
jstring j_caption = ToJString(env, caption);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user