diff --git a/debian/changelog b/debian/changelog index 4827e3f5b..72bcfc060 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +stella (3.4-1) stable; urgency=high + + * Version 3.4 release + + -- Stephen Anthony Sun, 29 May 2011 18:38:25 +0200 + + stella (3.3-1) stable; urgency=high * Version 3.3 release diff --git a/src/common/Version.hxx b/src/common/Version.hxx index 5f44fa50d..498ec87be 100644 --- a/src/common/Version.hxx +++ b/src/common/Version.hxx @@ -22,7 +22,7 @@ #include -#define STELLA_VERSION "3.4" +#define STELLA_VERSION "3.4.1_svn1" #define STELLA_BUILD atoi("$Rev$" + 6) #endif diff --git a/src/debugger/Debugger.cxx b/src/debugger/Debugger.cxx index e3294c738..d36e6d470 100644 --- a/src/debugger/Debugger.cxx +++ b/src/debugger/Debugger.cxx @@ -683,7 +683,7 @@ GUI::Rect Debugger::getStatusBounds() const int x1 = tia.right + 1; int y1 = 0; int x2 = tia.right + 225 + (dlg.width() > 1030 ? - (int) (0.3 * (dlg.width() - 1030)) : 0); + (int) (0.35 * (dlg.width() - 1030)) : 0); int y2 = tia.bottom; GUI::Rect r(x1, y1, x2, y2); diff --git a/src/emucore/EventHandler.cxx b/src/emucore/EventHandler.cxx index 8d0dd152e..dcf59429a 100644 --- a/src/emucore/EventHandler.cxx +++ b/src/emucore/EventHandler.cxx @@ -648,9 +648,9 @@ void EventHandler::poll(uInt64 time) int x = event.motion.xrel, y = event.motion.yrel; // Filter out extremely large movement, which is usually caused // by a screen being re-created - if(abs(x) < 100) + if(abs(x) < 50) myEvent->set(Event::MouseAxisXValue, x); - if(abs(y) < 100) + if(abs(y) < 50) myEvent->set(Event::MouseAxisYValue, y); } }