Browse Source

Merge pull request #524 from Nodrev/bugfix-createTexture-backbuffer-ratio

Textures created with BackbufferRatio::enum are not sized correctly
Branimir Karadžić 10 years ago
parent
commit
d885f32a50
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/bgfx.cpp

+ 2 - 2
src/bgfx.cpp

@@ -2674,8 +2674,8 @@ again:
 
 
 		if (BackbufferRatio::Count != _ratio)
 		if (BackbufferRatio::Count != _ratio)
 		{
 		{
-			_width  = uint16_t(s_ctx->m_frame->m_resolution.m_width);
-			_height = uint16_t(s_ctx->m_frame->m_resolution.m_height);
+			_width  = uint16_t(s_ctx->m_resolution.m_width);
+			_height = uint16_t(s_ctx->m_resolution.m_height);
 			getTextureSizeFromRatio(_ratio, _width, _height);
 			getTextureSizeFromRatio(_ratio, _width, _height);
 		}
 		}