mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-15 08:41:59 +00:00
- move vid_listadapters CCMD into common code.
SVN r2509 (trunk)
This commit is contained in:
parent
ed5a8e597c
commit
096edb0817
5 changed files with 14 additions and 9 deletions
|
@ -1556,7 +1556,7 @@ bool P_LookForPlayers (AActor *actor, INTBOOL allaround, FLookExParams *params)
|
|||
|
||||
if (actor->MissileState != NULL)
|
||||
{
|
||||
actor->SetStateNF(actor->SeeState);
|
||||
actor->SetState(actor->SeeState, true);
|
||||
actor->flags &= ~MF_JUSTHIT;
|
||||
}
|
||||
|
||||
|
|
|
@ -52,6 +52,7 @@ class IVideo
|
|||
|
||||
virtual bool SetResolution (int width, int height, int bits);
|
||||
|
||||
virtual void DumpAdapters();
|
||||
};
|
||||
|
||||
void I_InitGraphics ();
|
||||
|
|
|
@ -1768,3 +1768,14 @@ const int BaseRatioSizes[5][4] =
|
|||
{ 960, 600, 0, 48 },
|
||||
{ 960, 640, (int)(6.5*FRACUNIT), 48*15/16 } // 5:4 320, 213.3333, multiplied by three
|
||||
};
|
||||
|
||||
void IVideo::DumpAdapters ()
|
||||
{
|
||||
Printf("Multi-monitor support unavailable.\n");
|
||||
}
|
||||
|
||||
CCMD(vid_listadapters)
|
||||
{
|
||||
if (Video != NULL)
|
||||
Video->DumpAdapters();
|
||||
}
|
||||
|
|
|
@ -52,6 +52,7 @@ class IVideo
|
|||
|
||||
virtual bool SetResolution (int width, int height, int bits);
|
||||
|
||||
virtual void DumpAdapters();
|
||||
};
|
||||
|
||||
void I_InitGraphics ();
|
||||
|
|
|
@ -405,14 +405,6 @@ void Win32Video::DumpAdapters()
|
|||
}
|
||||
}
|
||||
|
||||
CCMD(vid_listadapters)
|
||||
{
|
||||
if (Video != NULL)
|
||||
{
|
||||
static_cast<Win32Video *>(Video)->DumpAdapters();
|
||||
}
|
||||
}
|
||||
|
||||
// Mode enumeration --------------------------------------------------------
|
||||
|
||||
HRESULT WINAPI Win32Video::EnumDDModesCB (LPDDSURFACEDESC desc, void *data)
|
||||
|
|
Loading…
Reference in a new issue