set MAXVIDWIDTH and MAXVIDHEIGHT to 8192

should accomidate absolutely everything
This commit is contained in:
Alug 2026-04-09 11:42:29 -04:00 committed by NepDisk
parent 52d1c4313b
commit 95a018c82c

View file

@ -43,8 +43,8 @@ extern "C" {
// we try to re-allocate a minimum of buffers for stability of the memory, // we try to re-allocate a minimum of buffers for stability of the memory,
// so all the small-enough tables based on screen size, are allocated once // so all the small-enough tables based on screen size, are allocated once
// and for all at the maximum size. // and for all at the maximum size.
#define MAXVIDWIDTH 2560 // don't set this too high because actually #define MAXVIDWIDTH 8192 // don't set this too high because actually
#define MAXVIDHEIGHT 1440 // lots of tables are allocated with the MAX size. #define MAXVIDHEIGHT 8192 // lots of tables are allocated with the MAX size.
#define BASEVIDWIDTH 320 // NEVER CHANGE THIS! This is the original #define BASEVIDWIDTH 320 // NEVER CHANGE THIS! This is the original
#define BASEVIDHEIGHT 200 // resolution of the graphics. #define BASEVIDHEIGHT 200 // resolution of the graphics.