X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Usermode%2FApplications%2Faxwin2_src%2FWM%2Fmain.c;h=1234b66277c64ce9f61f9b8ada5eabd0756c517f;hb=85eb17b306404571aa39596946c87ad9bb1d9d13;hp=1a68acb26adf0891ccc7fa29450c78d39b56380c;hpb=e61cffb0ef7221e18df8e67cba37a3ec45232275;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin2_src/WM/main.c b/Usermode/Applications/axwin2_src/WM/main.c index 1a68acb2..1234b662 100644 --- a/Usermode/Applications/axwin2_src/WM/main.c +++ b/Usermode/Applications/axwin2_src/WM/main.c @@ -8,6 +8,7 @@ // === IMPORTS === extern void ParseCommandline(int argc, char *argv[]); extern void Video_Setup(void); +extern void WM_Update(void); extern void Messages_PollIPC(void); // === GLOBALS === @@ -31,11 +32,13 @@ int main(int argc, char *argv[]) ParseCommandline(argc, argv); if( gsTerminalDevice == NULL ) { - gsTerminalDevice = "/Devices/VTerm/7"; + gsTerminalDevice = "/Devices/VTerm/6"; } Video_Setup(); - Interface_Render(); + Interface_Init(); + + WM_Update(); // Main Loop for(;;)