mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-22 10:37:52 -05:00
Add all services to the Service namespace
Previously there was a split where some of the services were in the Service namespace and others were not.
This commit is contained in:
@ -6,19 +6,17 @@
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Namespace GSP_LCD
|
||||
namespace Service {
|
||||
namespace GSP {
|
||||
|
||||
namespace GSP_LCD {
|
||||
|
||||
/// Interface to "gsp::Lcd" service
|
||||
class Interface : public Service::Interface {
|
||||
class GSP_LCD final : public Interface {
|
||||
public:
|
||||
Interface();
|
||||
GSP_LCD();
|
||||
|
||||
std::string GetPortName() const override {
|
||||
return "gsp::Lcd";
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace
|
||||
} // namespace GSP
|
||||
} // namespace Service
|
||||
|
Reference in New Issue
Block a user