TFT_ORIENT

This commit is contained in:
Stephen Crane 2018-11-18 12:48:10 +00:00
parent d81a1c0d92
commit 9be438f526
2 changed files with 8 additions and 2 deletions

View File

@ -14,6 +14,12 @@
#define TFT_FG GREEN
#define TFT_BG BLACK
#if defined(USE_UTFT)
#define TFT_ORIENT landscape
#elif defined(USE_ESPI)
#define TFT_ORIENT reverse_landscape
#endif
#if defined(USE_SD)
#define PROGRAMS "/apple1/"
#else

4
io.cpp
View File

@ -8,8 +8,8 @@
#include "pia.h"
#include "io.h"
#include "config.h"
#include "hardware.h"
#include "config.h"
#define ROWS 24
#define COLS 40
@ -17,7 +17,7 @@ static unsigned r, c;
static char screen[ROWS][COLS];
void io::reset() {
TFTDisplay::begin(TFT_BG, TFT_FG, landscape);
TFTDisplay::begin(TFT_BG, TFT_FG, TFT_ORIENT);
clear();
_cy += 2;