Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2008-10-31 23:47:30 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-10-31 23:47:30 +0300
commit44efce4f669a95291b96fff52b7cb664f50447fb (patch)
tree1abb4ce40819b3c1d225088ee0106f118097ca44 /intern
parent3f7535d3c3fa5e72ee7640c27827c47ad27c908e (diff)
* remove unreferenced var
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_WindowWin32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_WindowWin32.cpp b/intern/ghost/intern/GHOST_WindowWin32.cpp
index 6a06f4d715a..2094ae87c67 100644
--- a/intern/ghost/intern/GHOST_WindowWin32.cpp
+++ b/intern/ghost/intern/GHOST_WindowWin32.cpp
@@ -854,7 +854,7 @@ static int WeightPixelFormat(PIXELFORMATDESCRIPTOR& pfd) {
static int EnumPixelFormats(HDC hdc) {
int iPixelFormat;
int i, n, w, weight = 0;
- PIXELFORMATDESCRIPTOR pfd, pfd_fallback;
+ PIXELFORMATDESCRIPTOR pfd;
/* we need a device context to do anything */
if(!hdc) return 0;