diff --git a/VERSION b/VERSION index 655eed0d..c05213d6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1-Δ12 \ No newline at end of file +1-Δ13 \ No newline at end of file diff --git a/manual.lyx b/manual.lyx index edcb6703..2db4fdc0 100644 --- a/manual.lyx +++ b/manual.lyx @@ -6343,5 +6343,41 @@ rr1-delta12 Non-insane savestate anchoring \end_layout +\begin_layout Subsection +rr1-delta13 +\end_layout + +\begin_layout Itemize +More Memory search methods +\end_layout + +\begin_layout Itemize +Preserve movie if loading in RO mode. +\end_layout + +\begin_layout Itemize +Fix a obscure case in timeline check +\end_layout + +\begin_layout Itemize +Revamp the entiere ROM loading code +\end_layout + +\begin_layout Itemize +Support DnD on ROMs +\end_layout + +\begin_layout Itemize +Revamp menu layout +\end_layout + +\begin_layout Itemize +Standalone hotkey config dialog +\end_layout + +\begin_layout Itemize +Show bindings in more user-friendly format +\end_layout + \end_body \end_document diff --git a/manual.txt b/manual.txt index b92adc76..0fac9f2a 100644 --- a/manual.txt +++ b/manual.txt @@ -3116,3 +3116,21 @@ set-axis joystick0axis19 disabled • Non-insane savestate anchoring +17.68 rr1-delta13 + +• More Memory search methods + +• Preserve movie if loading in RO mode. + +• Fix a obscure case in timeline check + +• Revamp the entiere ROM loading code + +• Support DnD on ROMs + +• Revamp menu layout + +• Standalone hotkey config dialog + +• Show bindings in more user-friendly format + diff --git a/src/platform/wxwidgets/main.cpp b/src/platform/wxwidgets/main.cpp index 10b18388..f8926259 100644 --- a/src/platform/wxwidgets/main.cpp +++ b/src/platform/wxwidgets/main.cpp @@ -389,12 +389,12 @@ bool lsnes_app::OnInit() do_basic_core_init(); loaded_rom* rom = new loaded_rom; - moviefile mov; - mov.port1 = &porttype_info::port_default(0); - mov.port2 = &porttype_info::port_default(1); - mov.input.clear(*mov.port1, *mov.port2); - mov.start_paused = true; - boot_emulator(*rom, mov); + moviefile* mov = new moviefile; + mov->port1 = &porttype_info::port_default(0); + mov->port2 = &porttype_info::port_default(1); + mov->input.clear(*mov->port1, *mov->port2); + mov->start_paused = true; + boot_emulator(*rom, *mov); return true; }