From 25c42b1dfc35e9d285d355d3d13b38d97df8b049 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 26 Apr 2014 03:45:12 +0100 Subject: Fix windows build --- examples/text.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/text.cpp b/examples/text.cpp index 31685ee4..d91e1e84 100644 --- a/examples/text.cpp +++ b/examples/text.cpp @@ -84,7 +84,7 @@ public: wchar_t* text = L"A Quick Brown Fox Jumps Over The Lazy Dog 0123456789"; #if 1 - atlas = texture_atlas_new(600, 300, 2); + atlas = texture_atlas_new(600, 300, 1); DISTRHO_SAFE_ASSERT_RETURN(atlas != nullptr,); //fontmgr = font_manager_new(600, 200, 2); @@ -175,8 +175,8 @@ private: //mat4_set_identity(&view); glViewport(0, 0, width, height); - mat4_set_orthographic(&projection, 0, width, 0, height, width, height); - //mat4_set_orthographic(&projection, 0, width, 0, height, -1, 1); + //mat4_set_orthographic(&projection, 0, width, 0, height, width, height); + mat4_set_orthographic(&projection, 0, width, 0, height, -1, 1); } texture_atlas_t* atlas; -- cgit v1.2.3