mirror of
https://github.com/BernardoGiordano/Checkpoint
synced 2024-11-10 03:54:13 +00:00
3ds macro name change - fix #464
also fix useless dependency on vector in spi.cpp
This commit is contained in:
parent
6080bb2b1f
commit
da3b79eb19
6 changed files with 7 additions and 7 deletions
|
@ -81,7 +81,7 @@ CFLAGS := -g -gdwarf-4 -Wall -Wextra -Wno-psabi -O2 -mword-relocations -flto \
|
|||
-DGIT_REV=\"${GIT_REV}\" \
|
||||
-DCHEAT_SIZE_DECOMPRESSED=${CHEAT_SIZE_DECOMPRESSED}
|
||||
|
||||
CFLAGS += $(INCLUDE) -DARM11 -D_3DS -D_GNU_SOURCE=1
|
||||
CFLAGS += $(INCLUDE) -DARM11 -D__3DS__ -D_GNU_SOURCE=1
|
||||
|
||||
CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++17
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
#include "spi.hpp"
|
||||
|
||||
static std::vector<u32> knownJEDECs = {0x204012, 0x621600, 0x204013, 0x621100, 0x204014, 0x202017, 0x204017, 0x208013};
|
||||
static const u32 knownJEDECS[] = {0x204012, 0x621600, 0x204013, 0x621100, 0x204014, 0x202017, 0x204017, 0x208013};
|
||||
|
||||
u8* fill_buf = NULL;
|
||||
|
||||
|
@ -409,7 +409,7 @@ Result SPIGetCardType(CardType* type, int infrared)
|
|||
if (R_SUCCEEDED(res)) {
|
||||
Logger::getInstance().log(Logger::INFO, "Found JEDEC: 0x%016lX", jedec);
|
||||
Logger::getInstance().log(Logger::INFO, "CardType (While inside maxTries loop): %016lX", t);
|
||||
if (std::find(knownJEDECs.begin(), knownJEDECs.end(), jedec) != knownJEDECs.end()) {
|
||||
if (std::find(std::begin(knownJEDECS), std::end(knownJEDECS), jedec) != std::end(knownJEDECS)) {
|
||||
Logger::getInstance().log(Logger::INFO, "Found a jedec equal to one in the ordered list. Type: %016lX", *type);
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -35,7 +35,7 @@ public:
|
|||
Overlay(Screen& screen) : screen(screen), me(screen.currentOverlay) {}
|
||||
virtual ~Overlay() = default;
|
||||
virtual void update(const InputState&) = 0;
|
||||
#if defined(_3DS)
|
||||
#if defined(__3DS__)
|
||||
virtual void drawTop() const = 0;
|
||||
virtual void drawBottom() const = 0;
|
||||
#elif defined(__SWITCH__)
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "Screen.hpp"
|
||||
#include "Overlay.hpp"
|
||||
|
||||
#if defined(_3DS)
|
||||
#if defined(__3DS__)
|
||||
|
||||
void Screen::doDrawTop() const
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ class Screen {
|
|||
public:
|
||||
virtual ~Screen() = default;
|
||||
// Call draw, then currentOverlay->draw if it exists
|
||||
#if defined(_3DS)
|
||||
#if defined(__3DS__)
|
||||
void doDrawTop(void) const;
|
||||
void doDrawBottom(void) const;
|
||||
virtual void drawTop(void) const = 0;
|
||||
|
|
|
@ -67,7 +67,7 @@ private:
|
|||
Logger(Logger const&) = delete;
|
||||
void operator=(Logger const&) = delete;
|
||||
|
||||
#if defined(_3DS)
|
||||
#if defined(__3DS__)
|
||||
const std::string mPath = "sdmc:/3ds/Checkpoint/checkpoint.log";
|
||||
#elif defined(__SWITCH__)
|
||||
const std::string mPath = "/switch/Checkpoint/checkpoint.log";
|
||||
|
|
Loading…
Reference in a new issue