mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
Fix a few bugs related to the cheat panel
This commit is contained in:
16
arm9/source/cheats/EmptyCheatRepository.h
Normal file
16
arm9/source/cheats/EmptyCheatRepository.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#include "ICheatRepository.h"
|
||||
|
||||
class EmptyCheatRepository : public ICheatRepository
|
||||
{
|
||||
public:
|
||||
std::unique_ptr<GameCheats> GetCheatsForGame(const FastFileRef& romFile) const override
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void UpdateEnabledCheatsForGame(const std::unique_ptr<GameCheats>& cheats) const override
|
||||
{
|
||||
// Do nothing
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user