use . to better distgunish STK's versions in signature

This commit is contained in:
Benjamin Funke 2025-08-17 11:52:30 +02:00
commit a5583fdbd0

View file

@ -7,10 +7,10 @@ init("archive", "STK");
function detect() {
if (Binary.compare("'STK2.0'")) { // STK2.0 found in executable (Loader7.exe/Dev7VM.EXE) but not in any Game yet.
sVersion = "STK20";
sVersion = "STK2.0";
bDetected = true;
} else if (Binary.compare("'STK2.1'")) {
sVersion = "STK21";
sVersion = "STK2.1";
bDetected = true;
}