diff --git a/Doc/Changelog.txt b/Doc/Changelog.txt index 27287bce4..c633a45ec 100644 --- a/Doc/Changelog.txt +++ b/Doc/Changelog.txt @@ -1,5 +1,14 @@ cxbx website: http://www.caustik.com/xbox/ +version: 0.7.3 (06/18/03) +-------------------------------- + +- Meshes + +- Indexed [primitive/vertex] rendering + +- Texture fixes (some users couldn't see them!) + version: 0.7.2 (06/13/03) -------------------------------- diff --git a/Include/Cxbx.h b/Include/Cxbx.h index d3af8ef0e..cd2975429 100644 --- a/Include/Cxbx.h +++ b/Include/Cxbx.h @@ -67,9 +67,9 @@ typedef signed long sint32; // * Version information // ****************************************************************** #ifndef _DEBUG_TRACE -#define _CXBX_VERSION "0.7.2" +#define _CXBX_VERSION "0.7.3" #else -#define _CXBX_VERSION "0.7.2-Trace" +#define _CXBX_VERSION "0.7.3-Trace" #endif // ****************************************************************** diff --git a/Source/Win32/Cxbx/DlgVideoConfig.cpp b/Source/Win32/Cxbx/DlgVideoConfig.cpp index 13fb43833..b450b75e9 100644 --- a/Source/Win32/Cxbx/DlgVideoConfig.cpp +++ b/Source/Win32/Cxbx/DlgVideoConfig.cpp @@ -125,7 +125,10 @@ INT_PTR CALLBACK DlgVideoConfigProc(HWND hWndDlg, UINT uMsg, WPARAM wParam, LPAR { g_pD3D8->GetAdapterIdentifier(v, D3DENUM_NO_WHQL_LEVEL, &AdapterIdentifier); - SendMessage(g_hDisplayAdapter, CB_ADDSTRING, 0, (LPARAM)AdapterIdentifier.Description); + if(v == 0) + SendMessage(g_hDisplayAdapter, CB_ADDSTRING, 0, (LPARAM)"Primary Display Adapter"); + else + SendMessage(g_hDisplayAdapter, CB_ADDSTRING, 0, (LPARAM)AdapterIdentifier.Description); } }