mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 17:01:15 +02:00
framebuffer,loadSetup: fix TD build
This commit is contained in:
@@ -237,8 +237,8 @@ class CFrameBuffer
|
||||
void resize(int format);
|
||||
void update(void);
|
||||
#else
|
||||
int scaleX(const int x, bool) { return x; };
|
||||
int scaleY(const int y, bool) { return y; };
|
||||
int scaleX(const int x, bool __attribute__((unused)) clamp = true) { return x; };
|
||||
int scaleY(const int y, bool __attribute__((unused)) clamp = true) { return y; };
|
||||
void resize(int) {};
|
||||
void update(void) {};
|
||||
#endif
|
||||
|
@@ -641,14 +641,16 @@ int CNeutrinoApp::loadSetup(const char * fname)
|
||||
g_settings.screen_EndX_lcd = configfile.getInt32( "screen_EndX_lcd", DEFAULT_X_END_HD);
|
||||
g_settings.screen_EndY_lcd = configfile.getInt32( "screen_EndY_lcd", DEFAULT_Y_END_HD);
|
||||
|
||||
int screen_preset_default = (g_settings.video_Mode > VIDEO_STD_576P);
|
||||
#if HAVE_TRIPLEDRAGON
|
||||
/* does not make sense to have two configurations for that... */
|
||||
g_settings.screen_preset = 0;
|
||||
#elif HAVE_SPARK_HARDWARE
|
||||
#else
|
||||
int screen_preset_default = (g_settings.video_Mode > VIDEO_STD_576P);
|
||||
#if HAVE_SPARK_HARDWARE
|
||||
g_settings.screen_preset = screen_preset_default;
|
||||
#else
|
||||
g_settings.screen_preset = configfile.getInt32("screen_preset", screen_preset_default);
|
||||
#endif
|
||||
#endif
|
||||
g_settings.screen_StartX = g_settings.screen_preset ? g_settings.screen_StartX_lcd : g_settings.screen_StartX_crt;
|
||||
g_settings.screen_StartY = g_settings.screen_preset ? g_settings.screen_StartY_lcd : g_settings.screen_StartY_crt;
|
||||
|
Reference in New Issue
Block a user