include/mgba/internal/gb/overrides.h (view raw)
1/* Copyright (c) 2013-2016 Jeffrey Pfau
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6#ifndef GB_OVERRIDES_H
7#define GB_OVERRIDES_H
8
9#include <mgba-util/common.h>
10
11CXX_GUARD_START
12
13#include <mgba/gb/interface.h>
14
15struct GBCartridgeOverride {
16 int headerCrc32;
17 enum GBModel model;
18 enum GBMemoryBankControllerType mbc;
19
20 uint32_t gbColors[12];
21};
22
23struct Configuration;
24bool GBOverrideFind(const struct Configuration*, struct GBCartridgeOverride* override);
25bool GBOverrideColorFind(struct GBCartridgeOverride* override);
26void GBOverrideSave(struct Configuration*, const struct GBCartridgeOverride* override);
27
28struct GB;
29void GBOverrideApply(struct GB*, const struct GBCartridgeOverride*);
30void GBOverrideApplyDefaults(struct GB*);
31
32CXX_GUARD_END
33
34#endif