All pastes #618578 Raw Edit

Untitled

public text v1 · immutable
#618578 ·published 2007-07-14 01:32 UTC
rendered paste body
MSG uMsg;

while (1)
{
    while (PeekMessage(&uMsg, NULL, 0, 0, PM_NOREMOVE) == TRUE)
    {
        if (GetMessage(&uMsg, NULL, 0, 0))
        {
            TranslateMessage(&uMsg);
            DispatchMessage(&uMsg);
        }
    }

    if (!windowMinimized && HasSceneUpdated())
    {
        Render();
    }else{
        Sleep(10);
    }
}