added games
updated code
This commit is contained in:
+43694
-6474
File diff suppressed because it is too large
Load Diff
@@ -14,8 +14,13 @@ uint8_t ram[RAM_SIZE];
|
||||
|
||||
// Definition of ROM data
|
||||
#if !ENABLE_SDCARD
|
||||
#if !USE_EMBED_ROM
|
||||
extern const uint8_t _binary_custom_rom_start[];
|
||||
const uint8_t* rom = _binary_custom_rom_start;
|
||||
#else
|
||||
#include "game_bin.h"
|
||||
const uint8_t *rom = GAME_DATA;
|
||||
#endif
|
||||
#else
|
||||
/** Definition of ROM data
|
||||
* We're going to erase and reprogram the region defines as "Filesystem" in platformio.ini (see board_build.filesystem_size).
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
// For ST7735, ST7789 and ILI9341 ONLY, define the colour order IF the blue and red are swapped on your display
|
||||
// Try ONE option at a time to find the correct colour order for your display
|
||||
// #define TFT_RGB_ORDER TFT_RGB // Colour order Red-Green-Blue
|
||||
// #define TFT_RGB_ORDER TFT_BGR // Colour order Blue-Green-Red
|
||||
#define TFT_RGB_ORDER TFT_BGR // Colour order Blue-Green-Red
|
||||
|
||||
// For ST7789, ST7735, ILI9163 and GC9A01 ONLY, define the pixel width and height in portrait orientation
|
||||
// #define TFT_WIDTH 80
|
||||
|
||||
Reference in New Issue
Block a user