How to change the name of the joystick on an arduino r3 uno

Hello, I have an Arduino R3 Uno, it is in joystick mode, I want to change the name that says in "UnoJoy" to any name, does anyone know how to change it? There is no video on YouTube... there is only the Arduino Leonardo.

someone knows?

I assume that this is what you have: GitHub - AlanChatham/UnoJoy: UnoJoy! allows you to easily turn an Arduino Uno (or Mega or Leonardo) into a PS3-compatible USB game controller

I only know what you need to do, not the exact how

  1. Modify the file usb_gamepad.c. It will be in a path like 'UnoJoy-master/UnoJoy/ATmega8u2Code'
    It contains the line #define STR_PRODUCT L"UnoJoy Joystick" ; that specifies the name that you see in your screenshot and you can change that.
  2. After that, you need to build the firmware again; it looks like you need Microsoft's Visual Studio but I'm not sure.
  3. And lastly you need to burn the new firmware again to the 16U2.

Note: this is the same file on github: UnoJoy/UnoJoy/ATmega8u2Code/usb_gamepad.c at master · AlanChatham/UnoJoy · GitHub