set MAXVIDWIDTH and MAXVIDHEIGHT to 8192
should accomidate absolutely everything
This commit is contained in:
parent
52d1c4313b
commit
95a018c82c
1 changed files with 2 additions and 2 deletions
|
|
@ -43,8 +43,8 @@ extern "C" {
|
|||
// 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
|
||||
// and for all at the maximum size.
|
||||
#define MAXVIDWIDTH 2560 // don't set this too high because actually
|
||||
#define MAXVIDHEIGHT 1440 // lots of tables are allocated with the MAX size.
|
||||
#define MAXVIDWIDTH 8192 // don't set this too high because actually
|
||||
#define MAXVIDHEIGHT 8192 // lots of tables are allocated with the MAX size.
|
||||
#define BASEVIDWIDTH 320 // NEVER CHANGE THIS! This is the original
|
||||
#define BASEVIDHEIGHT 200 // resolution of the graphics.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue