Skip to content

Commit

Permalink
Uncomment "found GUID" printing
Browse files Browse the repository at this point in the history
  • Loading branch information
TheHorscht committed Jan 16, 2024
1 parent e73dd8b commit b85fe5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ int main(int argc, char** argv) {
vector<uint8_t> GUID(17);
GUID[16] = 0;
buffer.copy((char*)&GUID[0], 16, i + 1 + 4);
// cout << "Found a GUID at offset " << GUIDstartPos << " - " << ByteArrayToGUIDString(GUID) << " - " << ByteArrayToString(GUID) << endl;
cout << "Found a GUID at offset " << GUIDstartPos << " - " << ByteArrayToGUIDString(GUID) << " - " << ByteArrayToString(GUID) << endl;
for(auto it = guidReplacePairs.begin(); it != guidReplacePairs.end(); it++) {
const string lookFor = get<0>(*it);
const string replaceWith = get<1>(*it);
Expand Down

0 comments on commit b85fe5c

Please # to comment.