Quellcode durchsuchen

Corrected a bug where match records were not recorded in the ScanData.

Updated engine minor version.


git-svn-id: https://svn.microneil.com/svn/SNFMulti/trunk@42 dc71a809-1921-45c4-985c-09c81d0142d9
wx
madscientist vor 12 Jahren
Ursprung
Commit
f25ac2161c
1 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen
  1. 3
    2
      SNFMulti.cpp

+ 3
- 2
SNFMulti.cpp Datei anzeigen

@@ -23,7 +23,7 @@ using namespace std;

//// Version Info

const char* SNF_ENGINE_VERSION = "SNFMulti Engine Version 3.0.20 Build: " __DATE__ " " __TIME__;
const char* SNF_ENGINE_VERSION = "SNFMulti Engine Version 3.0.21 Build: " __DATE__ " " __TIME__;

//// Script Caller Methods

@@ -1634,8 +1634,9 @@ int snf_EngineHandler::scanMessage(
S = TmpSNFMatch.symbol;
}
// Move on to next result.
// Record this MatchRecord and mMove on to next result.
MyScanData.MatchRecords.push_back(TmpSNFMatch);
ResultsCount++;
ResultCursor=ResultCursor->NextMatchRecord;
}

Laden…
Abbrechen
Speichern