From c20b7adec6e8792fbdfc7b008357cdc4799f2d99 Mon Sep 17 00:00:00 2001
From: Ton Roosendaal <ton@blender.org>
Date: Mon, 8 Nov 2004 19:20:59 +0000
Subject: [PATCH] Removed silly "==0" to check if "apply deform" should happen.
 I'm just binary flipped...

---
 source/blender/src/editobject.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/blender/src/editobject.c b/source/blender/src/editobject.c
index c45c0d97a9c..fe662f28e59 100644
--- a/source/blender/src/editobject.c
+++ b/source/blender/src/editobject.c
@@ -2872,7 +2872,7 @@ void apply_object()
 			make_duplilist_real();
 		}
 		else {
-			if(okee("Apply deformation")==0) {
+			if(okee("Apply deformation")) {
 				object_apply_deform(ob);
 				BIF_undo_push("Apply deformation");
 			}
-- 
GitLab