Handle crazy cursor more gracefully (closes #168)

This commit is contained in:
Keith Winstein
2012-04-13 14:03:16 -04:00
parent 7be90ae244
commit 45487f6623
+1 -1
View File
@@ -117,7 +117,7 @@ Validity ConditionalCursorMove::get_validity( const Framebuffer &fb,
if ( (row >= fb.ds.get_height())
|| (col >= fb.ds.get_width()) ) {
assert( false );
// assert( false );
// fprintf( stderr, "Crazy cursor (%d,%d)!\n", row, col );
return IncorrectOrExpired;
}