我正在像 win32 GDI 一样创建游戏马里奥。我已经为游戏实现了新循环:
PeekMessage(&msg,NULL,0,0,PM_NOREMOVE);
while (msg.message!=WM_QUIT)
{
if (PeekMessage(&msg,NULL,0,0,PM_REMOVE)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
else // No message to do
{
gGameMain->GameLoop();
}
}
但是我的游戏一直在运行,直到我按下 Ctrl + Alt + Del (鼠标光标正在滚动)。