This commit is contained in:
Aaron Robinson 2004-03-15 01:08:50 +00:00
parent 271d981f9c
commit 3574573306
4 changed files with 6 additions and 6 deletions

BIN
Cxbx.opt

Binary file not shown.

View File

@ -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())

View File

@ -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");
}

View File

@ -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;