mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-03-27 13:50:22 -06:00
* Add DLP:SRVR + add friend code seed hack for LM1 + add multiple filters in IPC debugger + fix cia_container smdh offset not being applied, possible IF statement underflowing + default initialize boss variables + fix IPC header asserts in AM functions + add extra debug info to IPC param assert * Make server & client more resistant to high ping conditions * Remove DLP from list of online recommended modules * Fix license headers + fix clang formatting + fix server create network assert * Fix recorder.cpp license header
23 lines
493 B
C++
23 lines
493 B
C++
// Copyright Citra Emulator Project / Azahar Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "common/common_types.h"
|
|
|
|
namespace Common::Hacks {
|
|
|
|
enum class HackType : int {
|
|
RIGHT_EYE_DISABLE,
|
|
ACCURATE_MULTIPLICATION,
|
|
DECRYPTION_AUTHORIZED,
|
|
ONLINE_LLE_REQUIRED,
|
|
REGION_FROM_SECURE,
|
|
REQUIRES_SHADER_FIXUP,
|
|
SPOOF_FRIEND_CODE_SEED,
|
|
};
|
|
|
|
class UserHackData {};
|
|
|
|
} // namespace Common::Hacks
|