Skip to content

Commit 360934d

Browse files
committed
Advanced Settings by default to 0
Small fix, set all the advanced setting (except for SpoofBuild) by default to 0, because if not exist and set to 0 in the JSON, the result is as if it to 1. Also, grammar fix & about spoofVendingSdk in CHANGELOG.md
1 parent 264d9a3 commit 360934d

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
## Targeted Fix v2
22

33
- Update to latest source from PIFork v14
4-
- Add config folder inside in the module folder for better organization.
5-
- Add scripts to keep the config files when update/reinstall
4+
- Added config folder inside in the module folder for better organization.
5+
- Added scripts to keep the config files when update/reinstall
6+
- Removed the spoofVendingSdk option as no longer needed.
67

78
## Targeted Fix v1
89

app/src/main/cpp/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
static int verboseLogs = 0;
2424
static int spoofBuild = 1;
25-
static int spoofProps = 1;
26-
static int spoofProvider = 1;
25+
static int spoofProps = 0;
26+
static int spoofProvider = 0;
2727
static int spoofSignature = 0;
2828

2929
static std::map<std::string, std::string> jsonProps;

0 commit comments

Comments
 (0)