lsnes rr0-β27
Fixes show-bindings to show the commands bound.
This commit is contained in:
parent
271efb7f1d
commit
f3e3c4f6f7
4 changed files with 14 additions and 2 deletions
|
@ -4761,5 +4761,13 @@ Implement BPS patching (using bsnes core IPS patcher).
|
|||
Add feature to load headered ROMs.
|
||||
\end_layout
|
||||
|
||||
\begin_layout Subsection
|
||||
rr0-beta27
|
||||
\end_layout
|
||||
|
||||
\begin_layout Itemize
|
||||
Show command names when showing keybindings
|
||||
\end_layout
|
||||
|
||||
\end_body
|
||||
\end_document
|
||||
|
|
|
@ -2305,3 +2305,7 @@ set-axis joystick0axis19 disabled
|
|||
|
||||
• Add feature to load headered ROMs.
|
||||
|
||||
13.27 rr0-beta27
|
||||
|
||||
• Show command names when showing keybindings
|
||||
|
||||
|
|
|
@ -780,7 +780,7 @@ void keymapper::dumpbindings() throw(std::bad_alloc)
|
|||
messages << "bind-key ";
|
||||
if(i.first.a != "" || i.first.b != "")
|
||||
messages << i.first.a << "/" << i.first.b << " ";
|
||||
messages << i.first.c << std::endl;
|
||||
messages << i.first.c << " " << i.second->command << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -299,4 +299,4 @@ uint32_t gcd(uint32_t a, uint32_t b) throw()
|
|||
}
|
||||
|
||||
std::string bsnes_core_version;
|
||||
std::string lsnes_version = "0-β26";
|
||||
std::string lsnes_version = "0-β27";
|
||||
|
|
Loading…
Add table
Reference in a new issue