hle: kernel: Rename SharedMemory to KSharedMemory.

This commit is contained in:
bunnei
2021-02-05 23:14:31 -08:00
parent 51e8b2733c
commit 0d62f30b00
13 changed files with 54 additions and 54 deletions

View File

@ -12,7 +12,7 @@ class System;
}
namespace Kernel {
class SharedMemory;
class KSharedMemory;
}
namespace Service::HID {
@ -42,7 +42,7 @@ private:
void StopImageProcessorAsync(Kernel::HLERequestContext& ctx);
void ActivateIrsensorWithFunctionLevel(Kernel::HLERequestContext& ctx);
std::shared_ptr<Kernel::SharedMemory> shared_mem;
std::shared_ptr<Kernel::KSharedMemory> shared_mem;
const u32 device_handle{0xABCD};
};