mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-02 19:44:48 +02:00
Properly escape '_' in native method stubs.
This commit is contained in:
parent
76ba12ad38
commit
517d6cfb3b
|
|
@ -233,6 +233,10 @@ public class Utils {
|
|||
}
|
||||
|
||||
public static String getQualifiedNativeMethodName(String qualified_class_name, String method_name) {
|
||||
// Escape '_' in method name
|
||||
if ( method_name.indexOf('_') != -1 )
|
||||
method_name = method_name.replace("_", "_1");
|
||||
|
||||
return "Java_" + getNativeQualifiedName(qualified_class_name) + "_" + method_name;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue