mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-19 15:57:54 +00:00
am: Unstub SetScreenShotPermission
This commit is contained in:
parent
4d4f03d11c
commit
542ea8c6e8
2 changed files with 12 additions and 1 deletions
|
@ -149,6 +149,12 @@ private:
|
|||
void GetAccumulatedSuspendedTickValue(Kernel::HLERequestContext& ctx);
|
||||
void GetAccumulatedSuspendedTickChangedEvent(Kernel::HLERequestContext& ctx);
|
||||
|
||||
enum class ScreenshotPermission : u32 {
|
||||
Inherit = 0,
|
||||
Enable = 1,
|
||||
Disable = 2,
|
||||
};
|
||||
|
||||
Core::System& system;
|
||||
std::shared_ptr<NVFlinger::NVFlinger> nvflinger;
|
||||
Kernel::EventPair launchable_event;
|
||||
|
@ -157,6 +163,7 @@ private:
|
|||
u32 idle_time_detection_extension = 0;
|
||||
u64 num_fatal_sections_entered = 0;
|
||||
bool is_auto_sleep_disabled = false;
|
||||
ScreenshotPermission screenshot_permission = ScreenshotPermission::Inherit;
|
||||
};
|
||||
|
||||
class ICommonStateGetter final : public ServiceFramework<ICommonStateGetter> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue