Skip to content

Commit

Permalink
version spoofing final
Browse files Browse the repository at this point in the history
Signed-off-by: Fra <[email protected]>
  • Loading branch information
Alexyo21 authored Nov 20, 2023
1 parent d86663c commit bc901f0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sysmodules/rosalina/include/menu.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@

#define FLOAT_CONV_MULT 1e8 // for screen filters

#define GET_VERSION_MAJOR1(version1) ((version1)>>24)
#define GET_VERSION_MINOR1(version1) (((version1)>>16)&0xFF)
#define GET_VERSION_REVISION1(version1) (((version1)>>8)&0xFF)

typedef enum MenuItemAction {
MENU_END = 0,
METHOD = 1,
Expand Down

0 comments on commit bc901f0

Please sign in to comment.