Skip to content

Commit 7f1a36b

Browse files
authored
Merge pull request #214 from inputlabs/profile-tweaks
Fix default home profile not using the correct versioning
2 parents 2400bae + 0e5fca1 commit 7f1a36b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/profiles/home.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ void config_profile_default_home(CtrlProfile *profile){
1515
profile->sections[SECTION_META].meta = (CtrlProfileMeta){
1616
.name="Home",
1717
.control_byte = NVM_CONTROL_BYTE,
18-
.version_major = NVM_PROFILE_VERSION / 1000000,
19-
.version_minor = (NVM_PROFILE_VERSION / 1000) % 1000,
20-
.version_patch = NVM_PROFILE_VERSION % 1000,
18+
.version_major = NVM_HOME_PROFILE_VERSION / 1000000,
19+
.version_minor = (NVM_HOME_PROFILE_VERSION / 1000) % 1000,
20+
.version_patch = NVM_HOME_PROFILE_VERSION % 1000,
2121
};
2222

2323
// ABXY.

0 commit comments

Comments
 (0)