From c159332e5504bf7f100dcee99e530841550ed949 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Vitor=20Polverari?= Date: Mon, 1 Apr 2024 22:34:24 -0300 Subject: [PATCH] Revert changes from both 17e3644 and 1b84ae9 on the native.cpp file (hopefully fixing clang) --- src/android/app/src/main/jni/native.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/android/app/src/main/jni/native.cpp b/src/android/app/src/main/jni/native.cpp index c5ddd2171..18ffc26c8 100644 --- a/src/android/app/src/main/jni/native.cpp +++ b/src/android/app/src/main/jni/native.cpp @@ -735,8 +735,8 @@ void Java_io_github_lime3ds_NativeLibrary_loadState([[maybe_unused]] JNIEnv* env void Java_io_github_lime3ds_NativeLibrary_logDeviceInfo([[maybe_unused]] JNIEnv* env, [[maybe_unused]] jobject obj) { - LOG_INFO(Frontend, "Lime3DS Version: {} | {}-{}", Common::g_build_fullname, - Common::g_scm_branch, Common::g_scm_desc); + LOG_INFO(Frontend, "Citra Version: {} | {}-{}", Common::g_build_fullname, Common::g_scm_branch, + Common::g_scm_desc); LOG_INFO(Frontend, "Host CPU: {}", Common::GetCPUCaps().cpu_string); // There is no decent way to get the OS version, so we log the API level instead. LOG_INFO(Frontend, "Host OS: Android API level {}", android_get_device_api_level());