mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
16 lines
439 B
Diff
16 lines
439 B
Diff
diff --git a/src/video/fbcon/SDL_fbvideo.c b/src/video/fbcon/SDL_fbvideo.c
|
|
index fec158f..dd46069 100644
|
|
--- a/src/video/fbcon/SDL_fbvideo.c
|
|
+++ b/src/video/fbcon/SDL_fbvideo.c
|
|
@@ -273,6 +273,10 @@ static SDL_VideoDevice *FB_CreateDevice(int devindex)
|
|
|
|
this->free = FB_DeleteDevice;
|
|
|
|
+ /* OpenDingux specific patch: The video driver can handle everything
|
|
+ * from 4x4 to 640x480 */
|
|
+ this->handles_any_size = 1;
|
|
+
|
|
return this;
|
|
}
|
|
|