MCPcopy Create free account
hub / github.com/RPCSX/rpcsx / sendFirmwareCompiled

Function sendFirmwareCompiled

android/src/rpcsx-android.cpp:628–635  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

626}
627
628static void sendFirmwareCompiled(JNIEnv *env, const std::string &version) {
629 auto fwRepositoryClass =
630 ensure(env->FindClass("net/rpcsx/FirmwareRepository"));
631 auto methodId = ensure(env->GetStaticMethodID(
632 fwRepositoryClass, "onFirmwareCompiled", "(Ljava/lang/String;)V"));
633
634 env->CallStaticVoidMethod(fwRepositoryClass, methodId, wrap(env, version));
635}
636
637static void sendGameInfo(JNIEnv *env, jlong progressId,
638 std::span<const GameInfo> infos) {

Callers

nothing calls this directly

Calls 2

wrapFunction · 0.70
ensureFunction · 0.50

Tested by

no test coverage detected