tweaks
This commit is contained in:
parent
271d981f9c
commit
3574573306
|
@ -2,8 +2,6 @@ Cxbx Todo (* denotes high priority, + denotes medium priority)
|
|||
|
||||
HLE :
|
||||
|
||||
* Fix hardware video mode
|
||||
|
||||
* NSIS installer. Option to clear UDATA/TDATA/CxbxCache
|
||||
|
||||
* Modularize inline vertex buffers (Begin()/End())
|
||||
|
|
|
@ -120,14 +120,14 @@ void DbgConsole::ParseCommand()
|
|||
|
||||
// TODO: as command list grows, turn into static string/ptr lookup
|
||||
|
||||
if(stricmp(m_szInput, "help") == 0)
|
||||
if(stricmp(m_szInput, "h") == 0 || stricmp(m_szInput, "help") == 0)
|
||||
{
|
||||
printf("CxbxDbg: \n");
|
||||
printf("CxbxDbg: Cxbx Debug Command List:\n");
|
||||
printf("CxbxDbg: \n");
|
||||
printf("CxbxDbg: HELP, H\n");
|
||||
printf("CxbxDbg: QUIT, Q, EXIT\n");
|
||||
printf("CxbxDbg: TRACE, T\n");
|
||||
printf("CxbxDbg: HELP (H)\n");
|
||||
printf("CxbxDbg: QUIT (Q or EXIT)\n");
|
||||
printf("CxbxDbg: TRACE (T)\n");
|
||||
printf("CxbxDbg: CLS\n");
|
||||
printf("CxbxDbg: \n");
|
||||
}
|
||||
|
|
|
@ -220,6 +220,8 @@ VOID XTL::EmuD3DInit(Xbe::Header *XbeHeader, uint32 XbeHeaderSize)
|
|||
g_pD3D8->GetDeviceCaps(g_XBVideo.GetDisplayAdapter(), DevType, &g_D3DCaps);
|
||||
}
|
||||
|
||||
SetFocus(g_hEmuWindow);
|
||||
|
||||
// create default device
|
||||
{
|
||||
XTL::X_D3DPRESENT_PARAMETERS PresParam;
|
||||
|
|
Loading…
Reference in New Issue