aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/gsp_gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-12-25 22:51:38 -0500
committerbunnei <bunneidev@gmail.com>2014-12-25 22:51:38 -0500
commit5d2ee78d8fbb25c8496654026b27f4238040a4da (patch)
treeee6d5ad562aa39696d547eaf83064957becff649 /src/core/hle/service/gsp_gpu.h
parent9c8ec675d91729b26dd1d7b3bd190008c711a146 (diff)
parent9796bc1fa2518ca4780ce63a543444ce5f8a28e4 (diff)
Merge pull request #330 from purpasmart96/new_srv
More services & small clean ups
Diffstat (limited to 'src/core/hle/service/gsp_gpu.h')
-rw-r--r--src/core/hle/service/gsp_gpu.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/hle/service/gsp_gpu.h b/src/core/hle/service/gsp_gpu.h
index 56b5a16c9..932b6170f 100644
--- a/src/core/hle/service/gsp_gpu.h
+++ b/src/core/hle/service/gsp_gpu.h
@@ -158,19 +158,11 @@ static_assert(sizeof(CommandBuffer) == 0x200, "CommandBuffer struct has incorrec
/// Interface to "srv:" service
class Interface : public Service::Interface {
public:
-
Interface();
- ~Interface();
-
- /**
- * Gets the string port name used by CTROS for the service
- * @return Port name of service
- */
std::string GetPortName() const override {
return "gsp::Gpu";
}
-
};
/**