1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Part of #11158: Remove more C-style casts (#11743)

This commit is contained in:
Michael Steenbeek
2020-05-14 02:22:50 +02:00
committed by GitHub
parent 32609791de
commit f0bd05cf6d
17 changed files with 40 additions and 39 deletions

View File

@@ -163,7 +163,7 @@ JNIEXPORT jlong JNICALL Java_io_openrct2_ZipArchive_allocBytes(JNIEnv* env, jcla
env->ReleaseByteArrayElements(input, bufferPtr, 0);
return (uintptr_t)data;
return reinterpret_cast<uintptr_t>(data);
}
#endif // __ANDROID__