mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-22 04:38:14 +00:00
vi: Implement GetDisplayResolution.
This commit is contained in:
parent
1eeef530e5
commit
c800619c1e
2 changed files with 26 additions and 0 deletions
|
@ -14,6 +14,13 @@ struct EventType;
|
|||
namespace Service {
|
||||
namespace VI {
|
||||
|
||||
enum class DisplayResolution : u32 {
|
||||
DockedWidth = 1920,
|
||||
DockedHeight = 1080,
|
||||
UndockedWidth = 1280,
|
||||
UndockedHeight = 720,
|
||||
};
|
||||
|
||||
class Module final {
|
||||
public:
|
||||
class Interface : public ServiceFramework<Interface> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue