summaryrefslogtreecommitdiff
path: root/Source/Android/jni/GameList/GameFile.cpp
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-07-22 16:24:05 -0400
committerGitHub <noreply@github.com>2020-07-22 16:24:05 -0400
commit8e99c77510dc88b411d472c83d5787645b264494 (patch)
treed53680b281553f180f57d4420395f1e5c3f8c153 /Source/Android/jni/GameList/GameFile.cpp
parent92d24aec2e45fc65767444b220108595f8e74b94 (diff)
parent9ac24a05800c4960230c1f6f5f62412177717f9c (diff)
Merge pull request #8972 from Ebola16/CT
Android: Some simple Clang-Tidy suggestions
Diffstat (limited to 'Source/Android/jni/GameList/GameFile.cpp')
-rw-r--r--Source/Android/jni/GameList/GameFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/jni/GameList/GameFile.cpp b/Source/Android/jni/GameList/GameFile.cpp
index 71b8076275..741cf39b4f 100644
--- a/Source/Android/jni/GameList/GameFile.cpp
+++ b/Source/Android/jni/GameList/GameFile.cpp
@@ -188,7 +188,7 @@ JNIEXPORT jintArray JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getBan
jobject obj)
{
const std::vector<u32>& buffer = GetRef(env, obj)->GetBannerImage().buffer;
- const jsize size = static_cast<jsize>(buffer.size());
+ const auto size = static_cast<jsize>(buffer.size());
const jintArray out_array = env->NewIntArray(size);
if (!out_array)
return nullptr;