mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
wined3d: Enable long types in vertexdeclaration.c.
This commit is contained in:
parent
286261f69e
commit
c9ef0ed6e4
1 changed files with 1 additions and 2 deletions
|
@ -21,7 +21,6 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
#define WINE_NO_LONG_TYPES /* temporary */
|
|
||||||
|
|
||||||
#include "wined3d_private.h"
|
#include "wined3d_private.h"
|
||||||
|
|
||||||
|
@ -280,7 +279,7 @@ HRESULT CDECL wined3d_vertex_declaration_create(struct wined3d_device *device,
|
||||||
hr = vertexdeclaration_init(object, device, elements, element_count, parent, parent_ops);
|
hr = vertexdeclaration_init(object, device, elements, element_count, parent, parent_ops);
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
{
|
{
|
||||||
WARN("Failed to initialize vertex declaration, hr %#x.\n", hr);
|
WARN("Failed to initialize vertex declaration, hr %#lx.\n", hr);
|
||||||
heap_free(object);
|
heap_free(object);
|
||||||
return hr;
|
return hr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue