Skip to content

Commit

Permalink
Fix micro version
Browse files Browse the repository at this point in the history
  • Loading branch information
isage committed Nov 20, 2024
1 parent b7242de commit 043c2a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cef/vshctrl/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ void PatchSysconfPlugin(u32 text_addr) {
int version = sctrlSEGetVersion();
int version_major = version >> 24;
int version_minor = version >> 16 & 0xFF;
int version_micro = version & 0xFF;
int version_micro = version >> 8 & 0xFF;

char verinfo[50] = {0};
sprintf(verinfo, "6.61 Adrenaline-%d.%d.%d", version_major, version_minor, version_micro );
Expand Down

0 comments on commit 043c2a6

Please sign in to comment.