mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Android: Some simple Clang-Tidy suggestions
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user