changeset 1027:5aba2a5047c4

.
author Nomad
date Tue, 21 May 2013 11:24:26 +0200
parents eac5af72b614
children fbde7d8fcdb1
files Viewport.cpp
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/Viewport.cpp	Thu May 16 15:14:58 2013 +0200
+++ b/Viewport.cpp	Tue May 21 11:24:26 2013 +0200
@@ -19,6 +19,7 @@
     br_x = sBR_X;
     if ( sTL_X > sBR_X )
         {
+          __debugbreak(); // check this code
         br_x = sBR_X ^ sTL_X ^ sBR_X;                           // swap x's
         tl_x = br_x ^ sBR_X ^ sTL_X;
         }
@@ -26,6 +27,7 @@
     br_y = sBR_Y;
     if ( sTL_Y > sBR_Y )
         {
+          __debugbreak(); // check this code
         br_y = sBR_Y ^ sTL_Y ^ sBR_Y;                           // swap y's 
         tl_y = br_y ^ sBR_Y ^ sTL_Y;
         }