aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/gsp_lcd.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-12-07 22:45:12 -0800
committerGitHub <noreply@github.com>2016-12-07 22:45:12 -0800
commit43558dc40a27ddcb90b9c603f3b0924a04b81ab0 (patch)
tree6504d57b178698e410da415ec1213f7a76404ba9 /src/core/hle/service/gsp_lcd.cpp
parentbc48e2bda6012b578748608e093d4f9e25b191cd (diff)
parenta09602d6f6a98fcadbb32657126196836e66d4e0 (diff)
Merge pull request #2283 from lioncash/svc
service: Update function tables
Diffstat (limited to 'src/core/hle/service/gsp_lcd.cpp')
-rw-r--r--src/core/hle/service/gsp_lcd.cpp4
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 {
const Interface::FunctionInfo FunctionTable[] = {
// clang-format off
+ {0x000A0080, nullptr, "SetBrightnessRaw"},
+ {0x000B0080, nullptr, "SetBrightness"},
{0x000F0000, nullptr, "PowerOnAllBacklights"},
{0x00100000, nullptr, "PowerOffAllBacklights"},
{0x00110040, nullptr, "PowerOnBacklight"},
{0x00120040, nullptr, "PowerOffBacklight"},
{0x00130040, nullptr, "SetLedForceOff"},
+ {0x00140000, nullptr, "GetVendor"},
+ {0x00150040, nullptr, "GetBrightness"},
// clang-format on
};