diff options
| author | 2016-12-07 23:26:25 -0500 | |
|---|---|---|
| committer | 2016-12-08 00:56:47 -0500 | |
| commit | 65d94857c3e2de1ccf4545806887cec21ba28d6e (patch) | |
| tree | 22ebb54a21eec51364c1b06c8c5a4d4ac437659b /src | |
| parent | fs_user: Update function table (diff) | |
| download | yuzu-65d94857c3e2de1ccf4545806887cec21ba28d6e.tar.gz yuzu-65d94857c3e2de1ccf4545806887cec21ba28d6e.tar.xz yuzu-65d94857c3e2de1ccf4545806887cec21ba28d6e.zip | |
gsp_lcd: Update function table
Updated based off information from 3dbrew.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/gsp_lcd.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/gsp_lcd.cpp b/src/core/hle/service/gsp_lcd.cpp index b916dd759..3fdf5cca4 100644 --- a/src/core/hle/service/gsp_lcd.cpp +++ b/src/core/hle/service/gsp_lcd.cpp | |||
| @@ -11,11 +11,15 @@ namespace GSP_LCD { | |||
| 11 | 11 | ||
| 12 | const Interface::FunctionInfo FunctionTable[] = { | 12 | const Interface::FunctionInfo FunctionTable[] = { |
| 13 | // clang-format off | 13 | // clang-format off |
| 14 | {0x000A0080, nullptr, "SetBrightnessRaw"}, | ||
| 15 | {0x000B0080, nullptr, "SetBrightness"}, | ||
| 14 | {0x000F0000, nullptr, "PowerOnAllBacklights"}, | 16 | {0x000F0000, nullptr, "PowerOnAllBacklights"}, |
| 15 | {0x00100000, nullptr, "PowerOffAllBacklights"}, | 17 | {0x00100000, nullptr, "PowerOffAllBacklights"}, |
| 16 | {0x00110040, nullptr, "PowerOnBacklight"}, | 18 | {0x00110040, nullptr, "PowerOnBacklight"}, |
| 17 | {0x00120040, nullptr, "PowerOffBacklight"}, | 19 | {0x00120040, nullptr, "PowerOffBacklight"}, |
| 18 | {0x00130040, nullptr, "SetLedForceOff"}, | 20 | {0x00130040, nullptr, "SetLedForceOff"}, |
| 21 | {0x00140000, nullptr, "GetVendor"}, | ||
| 22 | {0x00150040, nullptr, "GetBrightness"}, | ||
| 19 | // clang-format on | 23 | // clang-format on |
| 20 | }; | 24 | }; |
| 21 | 25 | ||