First draft changelog update.

This commit is contained in:
Brandon Wright 2016-10-09 21:00:39 -05:00
parent 2d0c3cffe5
commit 8f18796d4b
2 changed files with 18 additions and 1 deletions

View File

@ -1,3 +1,18 @@
Snes9x 1.54
- Changed the S-SMP core module to one written by byuu. (byuu, BearOso)
This has the effect of increased accuracy, fewer
speed hacks, but also regresses a few speed-hack games.
- Improved IRQ emulation in several cases. (OV2)
- Added rewind support. (OV2)
- Updated libretro port. (OV2, libretro team)
- GTK+, Windows: Added xBRZ filter (Zenju, OV2, nmagre)
- GTK+: Fixed several issues with GTK+3. (BearOso)
- GTK+: Added extra aspect ratio options. (BearOso)
- GTK+: Added option to mute sound when using turbo mode. (BearOso)
- GTK+: Fixed expose handling to reduce overdraw and (BearOso)
improve performance.
- Unix: Added Xv support and fixed several bugs. (greg-kennedy)
Snes9x 1.53
- Rebuilt IRQ handling. (zones)

View File

@ -746,6 +746,8 @@ S9xOpenGLDisplayDriver::create_window (int width, int height)
window_attr.colormap = xcolormap;
window_attr.border_pixel = 0;
window_attr.event_mask = StructureNotifyMask | ExposureMask;
window_attr.do_not_propagate_mask = 0;
window_attr.save_under = False;
window_attr.background_pixmap = None;
xwindow = XCreateWindow (display,
@ -758,7 +760,7 @@ S9xOpenGLDisplayDriver::create_window (int width, int height)
vi->depth,
InputOutput,
vi->visual,
CWColormap | CWBorderPixel | CWBackPixmap | CWEventMask,
CWColormap | CWBorderPixel | CWBackPixmap | CWEventMask | CWSaveUnder | CWDontPropagate,
&window_attr);
XSync (display, False);