From 3819fb35af26b53733ccfa7fbd8e6fda5d2b7707 Mon Sep 17 00:00:00 2001 From: ennewalker Date: Tue, 21 Apr 2009 00:32:24 +0000 Subject: Fixing centering of title screen image. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9671 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/tilereg.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/tilereg.cc') diff --git a/crawl-ref/source/tilereg.cc b/crawl-ref/source/tilereg.cc index 5239865c50..01518e0739 100644 --- a/crawl-ref/source/tilereg.cc +++ b/crawl-ref/source/tilereg.cc @@ -2836,14 +2836,14 @@ TitleRegion::TitleRegion(int width, int height) : sx = sy = 0; dx = dy = 1; - if (!m_img.load_texture("title.png", GenericTexture::MIPMAP_NONE, NULL, true)) + if (!m_img.load_texture("title.png", GenericTexture::MIPMAP_NONE)) return; // Center wx = width; wy = height; - ox = (wx - m_img.width()) / 2; - oy = (wy - m_img.height()) / 2; + ox = (wx - m_img.orig_width()) / 2; + oy = (wy - m_img.orig_height()) / 2; { PTVert &v = m_buf.get_next(); -- cgit v1.2.3-54-g00ecf