Skip to content

Commit a08de1b

Browse files
committed
Cocoa Port: More refactoring.
- Add "ClientCheatManager.cpp" and "ClientFirmwareControl.cpp" files, moving all this C++ code to their own files. - Remove the "cocoa_videofilter.mm/.h" files, which were never used and aren't planned to ever be used in the future.
1 parent 3b07d28 commit a08de1b

File tree

16 files changed

+3035
-3180
lines changed

16 files changed

+3035
-3180
lines changed

desmume/src/cheatSystem.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (C) 2009-2024 DeSmuME team
2+
Copyright (C) 2009-2025 DeSmuME team
33
44
This file is free software: you can redistribute it and/or modify
55
it under the terms of the GNU General Public License as published by
@@ -15,6 +15,9 @@
1515
along with the this software. If not, see <http://www.gnu.org/licenses/>.
1616
*/
1717

18+
#ifndef _CHEAT_SYSTEM_H_
19+
#define _CHEAT_SYSTEM_H_
20+
1821
#include <stdio.h>
1922
#include <stdlib.h>
2023
#include <string.h>
@@ -327,3 +330,5 @@ void CheatItemGenerateDescriptionFlat(const char *folderName, const char *folder
327330

328331
extern CHEATS *cheats;
329332
extern CHEATSEARCH *cheatSearch;
333+
334+
#endif // _CHEAT_SYSTEM_H_

0 commit comments

Comments
 (0)