diff --git a/VERSION b/VERSION index 3a17adcb..0e194a09 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1-Δ6 \ No newline at end of file +1-Δ7 \ No newline at end of file diff --git a/manual.lyx b/manual.lyx index 1a15ecf8..7a8e1500 100644 --- a/manual.lyx +++ b/manual.lyx @@ -6135,5 +6135,46 @@ More save slots support Wxwidgets (wxJoystick) joystick support \end_layout +\begin_layout Subsection +rr1-delta7 +\end_layout + +\begin_layout Itemize +Lots of internal joystick refactoring +\end_layout + +\begin_layout Itemize +Evdev: Add mapping for BTN_TOOL_QUINTTAP +\end_layout + +\begin_layout Itemize +Wxwidgets: Settings mode (open settings without ROM) +\end_layout + +\begin_layout Itemize +Wxwidgets: Prompt key to use option +\end_layout + +\begin_layout Itemize +Wxwidgets: Fix crash if key goes away underneath +\end_layout + +\begin_layout Itemize +Wxwidgets: Fix mouse position in presence of scaling +\end_layout + +\begin_layout Itemize +AVI dumper: Mode 4 (high-quality resampling to common rate using SRC) +\end_layout + +\begin_layout Itemize +Wxwidgets: Redesign hotkeys dialog to avoid tree control (tree control doesn't + seem to work well on WinXP) +\end_layout + +\begin_layout Itemize +Start paused option. +\end_layout + \end_body \end_document diff --git a/manual.txt b/manual.txt index 6cba35d2..45ad32eb 100644 --- a/manual.txt +++ b/manual.txt @@ -3026,3 +3026,25 @@ set-axis joystick0axis19 disabled • Wxwidgets (wxJoystick) joystick support +15.57 rr1-delta7 + +• Lots of internal joystick refactoring + +• Evdev: Add mapping for BTN_TOOL_QUINTTAP + +• Wxwidgets: Settings mode (open settings without ROM) + +• Wxwidgets: Prompt key to use option + +• Wxwidgets: Fix crash if key goes away underneath + +• Wxwidgets: Fix mouse position in presence of scaling + +• AVI dumper: Mode 4 (high-quality resampling to common rate + using SRC) + +• Wxwidgets: Redesign hotkeys dialog to avoid tree control (tree + control doesn't seem to work well on WinXP) + +• Start paused option. + diff --git a/src/platform/wxwidgets/romselect.cpp b/src/platform/wxwidgets/romselect.cpp index 25072bfa..a9cf988b 100644 --- a/src/platform/wxwidgets/romselect.cpp +++ b/src/platform/wxwidgets/romselect.cpp @@ -972,7 +972,9 @@ void wxwin_project::on_load(wxCommandEvent& e) mov.start_paused = start_pause->GetValue(); boot_emulator(*our_rom, mov); } else { - boot_emulator(*our_rom, *new moviefile(make_movie())); + moviefile& mov = *new moviefile(make_movie()); + mov.start_paused = start_pause->GetValue(); + boot_emulator(*our_rom, mov); } Destroy(); } catch(std::exception& e) {