diff --git a/BinaryObjectScanner/Protection/Roxxe.cs b/BinaryObjectScanner/Protection/Roxxe.cs index 50ffac89..bfd0a6b3 100644 --- a/BinaryObjectScanner/Protection/Roxxe.cs +++ b/BinaryObjectScanner/Protection/Roxxe.cs @@ -52,6 +52,14 @@ public class Roxxe : IPathCheck, IPortableExecutableCheck // return "Roxxe (Possibly remnants)"; } + // If any dialog boxes match + // Found in "Data6.OWP" in IA item "game4u-22-cd". + if (pex.FindDialogBoxByItemTitle("SharpTiny Version 1.0").Any()) + return "Roxxe"; + // Found in "Data8.OWP" in IA item "game4u-22-cd". + else if (pex.FindDialogBoxByItemTitle("T32xWin Version 1.0").Any()) + return "Roxxe"; + return null; }