From 777b4c91cc8e88f93d11b7e6d33404e61540f0d2 Mon Sep 17 00:00:00 2001 From: Valentin Vanelslande Date: Tue, 16 Oct 2018 16:07:43 -0500 Subject: [PATCH] Move ptm_shared_extdata_id to header --- src/core/hle/service/ptm/ptm.cpp | 3 --- src/core/hle/service/ptm/ptm.h | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp index 8d6dc6cad..3d43d1ac2 100644 --- a/src/core/hle/service/ptm/ptm.cpp +++ b/src/core/hle/service/ptm/ptm.cpp @@ -23,9 +23,6 @@ namespace Service::PTM { /// Values for the default gamecoin.dat file static const GameCoin default_game_coin = {0x4F00, 42, 0, 0, 0, 2014, 12, 29}; -/// Id of the SharedExtData archive used by the PTM process -static const std::vector ptm_shared_extdata_id = {0, 0, 0, 0, 0x0B, 0, 0, 0xF0, 0, 0, 0, 0}; - void Module::Interface::GetAdapterState(Kernel::HLERequestContext& ctx) { IPC::RequestParser rp(ctx, 0x5, 0, 0); diff --git a/src/core/hle/service/ptm/ptm.h b/src/core/hle/service/ptm/ptm.h index e56a66972..ee29eb2e8 100644 --- a/src/core/hle/service/ptm/ptm.h +++ b/src/core/hle/service/ptm/ptm.h @@ -15,6 +15,9 @@ class System; namespace Service::PTM { +/// Id of the SharedExtData archive used by the PTM process +static const std::vector ptm_shared_extdata_id = {0, 0, 0, 0, 0x0B, 0, 0, 0xF0, 0, 0, 0, 0}; + /// Charge levels used by PTM functions enum class ChargeLevels : u32 { CriticalBattery = 1,