Index: trunk/i386/modules/Resolution/Resolution.c =================================================================== --- trunk/i386/modules/Resolution/Resolution.c (revision 865) +++ trunk/i386/modules/Resolution/Resolution.c (revision 866) @@ -4,10 +4,15 @@ */ #include "915resolution.h" +#include "gui.h" - void Resolution_start() { + UInt32 bp = 0; + UInt32 x, y; patchVideoBios(); + getResolution(&x, &y, &bp); + gui.screen.width = x; + gui.screen.height = y; }