Xserver: select video mode and font scale at start

This commit is contained in:
pelya
2013-11-05 05:34:34 +02:00
parent 2275b2cbd8
commit 2c17a36af3
12 changed files with 347 additions and 87 deletions

View File

@@ -0,0 +1,11 @@
#ifndef _XSDL_GFX_H_
#define _XSDL_GFX_H_
enum { VID_X = 480, VID_Y = 320 };
void XSDL_initSDL();
void XSDL_deinitSDL();
void XSDL_unpackFiles();
void XSDL_showConfigMenu(int * resolutionW, int * displayW, int * resolutionH, int * displayH);
#endif