iRed
The title says it all. A 1920x1080 resolution is way better! Why not to add it?
That is really easy and would consume around 5 minutes only.
Neuz.cpp
WndTaskBar.cpp
HwOption.cpp
resdata.inc (add in the end of it)
Task bar: http://www.mediafire.com/download/ay3i0e5ats9l1ha/WndTaskBar1920Wide.rar
Credits: Exrib0. for the coding.
So, +1 or -1?
EDIT: Don't forget to define it inside the ResData.h
That is really easy and would consume around 5 minutes only.
Neuz.cpp
- Spoiler:
Under
- Code:
else if(g_Option.m_nResWidth == 1680 && g_Option.m_nResHeight == 1050)
{
m_TexLoading.m_size = CSize(1400, FULLSCREEN_HEIGHT);
wideOffsetX = (g_Option.m_nResWidth - 1400) / 2;
m_2DRender.RenderFillRect( CRect( 0, 0, g_Option.m_nResWidth, g_Option.m_nResHeight ), 0xff000000 );
}
- Code:
else if(g_Option.m_nResWidth == 1920 && g_Option.m_nResHeight == 1080)
{
m_TexLoading.m_size = CSize(1920, FULLSCREEN_HEIGHT);
wideOffsetX = (g_Option.m_nResWidth - 1920) / 2;
m_2DRender.RenderFillRect( CRect( 0, 0, g_Option.m_nResWidth, g_Option.m_nResHeight ), 0xff000000 );
}
WndTaskBar.cpp
- Spoiler:
Under
- Code:
else if( g_Option.m_nResWidth == 1680 )
{
m_nMaxSlotApplet = MAX_SLOT_APPLET;
bResult = CWndNeuz::InitDialog( g_Neuz.GetSafeHwnd(), APP_TASKBAR1680W, WBS_MANAGER | WBS_SOUND, CPoint( 0, 0 ), pWndParent );
}
- Code:
else if( g_Option.m_nResWidth == 1920 )
{
m_nMaxSlotApplet = MAX_SLOT_APPLET;
bResult = CWndNeuz::InitDialog( g_Neuz.GetSafeHwnd(), APP_TASKBAR1920W, WBS_MANAGER | WBS_SOUND, CPoint( 0, 0 ), pWndParent );
}
HwOption.cpp
- Spoiler:
Under
- Code:
case 1680: //1680x1050 (WIDE)
if(m_nResHeight != 1050)
{
Error( "We Can't Support this Resolution!! - Width : %d, Height : %d", m_nResWidth, m_nResHeight );
m_nResHeight = 1050;
}
break;
- Code:
case 1920: //1920x1080 (WIDE)
if(m_nResHeight != 1080)
{
Error( "We Can't Support this Resolution!! - Width : %d, Height : %d", m_nResWidth, m_nResHeight );
m_nResHeight = 1080;
}
break;
resdata.inc (add in the end of it)
- Spoiler:
- Code:
APP_TASKBAR1920W "WndTaskBar1920Wide.bmp" "" 0 1920 48 0x610000 26
{
// Title String
IDS_RESDATA_INC_004864
}
{
// Help Key
IDS_RESDATA_INC_004865
}
{
WTYPE_BUTTON WIDC_BUTTON1 "ButtStart.bmp" 0 26 14 90 34 0x220010 0 0 0 0 46 112 169
{
// Title String
IDS_RESDATA_INC_004890
}
{
// ToolTip
IDS_RESDATA_INC_004891
}
WTYPE_CUSTOM WIDC_CUSTOM1 "" 0 106 10 682 42 0x260000 0 0 0 0 46 112 169
{
// Title String
IDS_RESDATA_INC_004892
}
{
// ToolTip
IDS_RESDATA_INC_004893
}
WTYPE_CUSTOM WIDC_CUSTOM2 "" 0 702 10 992 42 0x260000 0 0 0 0 46 112 169
{
// Title String
IDS_RESDATA_INC_004894
}
{
// ToolTip
IDS_RESDATA_INC_004895
}
WTYPE_BUTTON WIDC_UP "ButtQuickListUp.tga" 0 1000 8 1014 20 0x220010 0 0 0 0 46 112 169
{
// Title String
IDS_RESDATA_INC_004896
}
{
// ToolTip
IDS_RESDATA_INC_004897
}
WTYPE_BUTTON WIDC_DOWN "ButtQuickListDn.tga" 0 1000 32 1014 44 0x220010 0 0 0 0 46 112 169
{
// Title String
IDS_RESDATA_INC_004898
}
{
// ToolTip
IDS_RESDATA_INC_004899
}
WTYPE_CUSTOM WIDC_CUSTOM3 "" 0 1054 10 1194 42 0x260000 0 0 0 0 46 112 169
{
// Title String
IDS_RESDATA_INC_004900
}
{
// ToolTip
IDS_RESDATA_INC_004901
}
Task bar: http://www.mediafire.com/download/ay3i0e5ats9l1ha/WndTaskBar1920Wide.rar
Credits: Exrib0. for the coding.
So, +1 or -1?
EDIT: Don't forget to define it inside the ResData.h
- Code:
#define APP_TASKBAR1920W [b]2037[/b]