Moved to Win32 monitor device string for public name.

This commit is contained in:
Camilla Berglund 2013-02-01 00:52:25 +01:00
parent cbb6d1ad7b
commit b872089fa9
1 changed files with 7 additions and 7 deletions

View File

@ -140,13 +140,6 @@ _GLFWmonitor** _glfwPlatformGetMonitors(int* count)
&settings,
EDS_ROTATEDMODE);
name = _glfwCreateUTF8FromWideString(adapter.DeviceName);
if (!name)
{
// TODO: wat
return NULL;
}
if (found == size)
{
if (size)
@ -170,6 +163,13 @@ _GLFWmonitor** _glfwPlatformGetMonitors(int* count)
primary = adapter.StateFlags & DISPLAY_DEVICE_PRIMARY_DEVICE;
name = _glfwCreateUTF8FromWideString(monitor.DeviceString);
if (!name)
{
// TODO: wat
return NULL;
}
monitors[found] = _glfwCreateMonitor(name, primary,
GetDeviceCaps(dc, HORZSIZE),
GetDeviceCaps(dc, VERTSIZE),