Skip to content

Commit fdb5cfc

Browse files
committed
Use default generator of 0x1111111111111111 just like 1Conan
1 parent 0544044 commit fdb5cfc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/java/com/airsquared/blobsaver/Background.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,10 @@ private static void saveBackgroundBlobs(int preset) {
250250
String tsscheckerLog;
251251
try {
252252
if (!"none".equals(boardConfig) && !"".equals(boardConfig)) { // needs board config
253-
tsscheckerLog = executeProgram(tsschecker.getPath(), "--nocache", "-d", identifier, "-s", "-e", ecid,
253+
tsscheckerLog = executeProgram(tsschecker.getPath(), "--generator", "0x1111111111111111", "--nocache", "-d", identifier, "-s", "-e", ecid,
254254
"--save-path", path, "-i", version, "--boardconfig", boardConfig);
255255
} else {
256-
tsscheckerLog = executeProgram(tsschecker.getPath(), "--nocache", "-d", identifier, "-s", "-e", ecid,
256+
tsscheckerLog = executeProgram(tsschecker.getPath(), "--generator", "0x1111111111111111", "--nocache", "-d", identifier, "-s", "-e", ecid,
257257
"--save-path", path, "-i", version);
258258
}
259259
} catch (IOException e) {

src/main/java/com/airsquared/blobsaver/Controller.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ private void run(String device) {
248248
File locationToSaveBlobs = new File(pathField.getText());
249249
//noinspection ResultOfMethodCallIgnored
250250
locationToSaveBlobs.mkdirs();
251-
ArrayList<String> args = new ArrayList<>(Arrays.asList(tsschecker.getPath(), "--nocache", "-d", device, "-s", "-e", ecidField.getText(), "--save-path", pathField.getText()));
251+
ArrayList<String> args = new ArrayList<>(Arrays.asList(tsschecker.getPath(), "--generator", "0x1111111111111111", "--nocache", "-d", device, "-s", "-e", ecidField.getText(), "--save-path", pathField.getText()));
252252
if (getBoardConfig) {
253253
Collections.addAll(args, "--boardconfig", boardConfigField.getText());
254254
}

0 commit comments

Comments
 (0)