Detect-It-Easy/db/PE/game_engine_RenderWare.3.sg
Benjamin Funke 5fe1d184b7 fix operand in RenderWare signature
It seems that both sections are not always be present together
2026-05-01 20:44:35 +02:00

13 lines
No EOL
313 B
JavaScript

// Detect It Easy: detection rule file
// Author: BJNFNE <bjnfne@web.de>
// https://en.wikipedia.org/wiki/RenderWare
meta("game engine", "RenderWare");
function detect() {
if (PE.isSectionNamePresent("_rwdseg") || PE.isSectionNamePresent("_rwcseg")) {
bDetected = true;
}
return result();
}