mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
apply warning fixes from r1447
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4514 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -123,7 +123,7 @@ bool Renderer::Init()
|
||||
|
||||
sscanf(g_Config.cFSResolution, "%dx%d", &w_temp, &h_temp);
|
||||
|
||||
for (fullScreenRes = 0; fullScreenRes < D3D::GetAdapter(g_ActiveConfig.iAdapter).resolutions.size(); fullScreenRes++)
|
||||
for (fullScreenRes = 0; fullScreenRes < (int)D3D::GetAdapter(g_ActiveConfig.iAdapter).resolutions.size(); fullScreenRes++)
|
||||
{
|
||||
if ((D3D::GetAdapter(g_ActiveConfig.iAdapter).resolutions[fullScreenRes].xres == w_temp) &&
|
||||
(D3D::GetAdapter(g_ActiveConfig.iAdapter).resolutions[fullScreenRes].yres == h_temp))
|
||||
|
@ -1534,11 +1534,8 @@
|
||||
#define SC_CONTEXTHELP 0xF180
|
||||
#define LVS_TYPESTYLEMASK 0xfc00
|
||||
#define SPVERSION_MASK 0x0000FF00
|
||||
#define HTERROR -2
|
||||
#define IDC_STATIC -1
|
||||
#define UNICODE_NOCHAR 0xFFFF
|
||||
#define PWR_FAIL -1
|
||||
#define HTTRANSPARENT -1
|
||||
|
||||
// Next default values for new objects
|
||||
//
|
||||
|
Reference in New Issue
Block a user