diff --git a/README.md b/README.md
index e2de693..18d9cab 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ Redragon M908 Impact | complete | 0x04d9:0xfc4d |
Redragon M709 Tiger | experimental | 0x04d9:0xfc2a | See [this issue](https://github.com/dokutan/mouse_m908/issues/1)
- Changing the profile works
- Changing the settings is untested
- Macros are untested
- Reading the settings is not properly implemented due to a lack of data
Redragon M711 Cobra (FPS) | experimental | 0x04d9:0xfc30 | See [this issue](https://github.com/dokutan/mouse_m908/issues/2)
- Nothing is tested
- Implemented: led color, mode, brightness and speed, changing profiles, macros, reading settings
- No usb capture available, therefore missing: button mapping, dpi, scrollspeed, usb poll rate
Redragon M715 Dagger | experimental | 0x04d9:0xfc39 | Nothing is tested
- The device specific code is copied from the M711 and mostly unmodified
-Redragon M990 Legend | generic,
experimental support in the [m990 branch](https://github.com/dokutan/mouse_m908/tree/m990) | 0x04d9:0xfc0f | See [this issue](https://github.com/dokutan/mouse_m908/issues/5)
This mouse uses a different data format, keycodes, etc.
+Redragon M990 Legend | experimental | 0x04d9:0xfc0f | See [this issue](https://github.com/dokutan/mouse_m908/issues/5)
This mouse uses a different data format, keycodes, etc.
Redragon M990 Legend (RGB/Chroma) | generic | 0x04d9:0xfc41 | [please read this](#generic-support)
Redragon M719 Invader | generic | 0x04d9:0xfc4f | [please read this](#generic-support)
Redragon M802 Titanoboa 2 | generic | 0x04d9:0xfc42 | [please read this](#generic-support)
diff --git a/include/m990/readers.cpp b/include/m990/readers.cpp
index a711880..5d10e48 100644
--- a/include/m990/readers.cpp
+++ b/include/m990/readers.cpp
@@ -22,6 +22,9 @@
int mouse_m990::dump_settings( std::ostream& output ){
+ // prevents a compiler warning
+ (void)output;
+
/* TODO! missing data
//prepare data 1
int rows1 = sizeof(_c_data_read_1) / sizeof(_c_data_read_1[0]);
@@ -116,6 +119,9 @@ int mouse_m990::dump_settings( std::ostream& output ){
int mouse_m990::read_and_print_settings( std::ostream& output ){
+ // prevents a compiler warning
+ (void)output;
+
/* TODO! missing data
//prepare data 1
int rows1 = sizeof(_c_data_read_1) / sizeof(_c_data_read_1[0]);