Skip to content

Commit

Permalink
MIDletloader: Allow loading com.bmc and com.immersion classes
Browse files Browse the repository at this point in the history
Immersion's VibeTonz isn't implemented at all yet. And documentation
for it is very scarce.
  • Loading branch information
AShiningRay committed Nov 14, 2024
1 parent 0bd9b65 commit d8dff0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/recompile/mobile/MIDletLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ public Class loadClass(String name) throws ClassNotFoundException
name.startsWith("com.mascotcapsule") || name.startsWith("com.samsung") || name.startsWith("sun.") ||
name.startsWith("com.siemens") || name.startsWith("org.recompile") || name.startsWith("jdk.") ||
name.startsWith("com.vodafone.") || name.startsWith("com.jblend.") || name.startsWith("com.motorola.") ||
name.startsWith("com.sprintpcs.")
name.startsWith("com.sprintpcs.") || name.startsWith("com.bmc.") || name.startsWith("com.immersion.")
)
{
return loadClass(name, true);
Expand Down

0 comments on commit d8dff0d

Please sign in to comment.