mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
Random stuff (#9589)
* minor coding style adjustment * Qt: simplify osk dialog buttons * replace std::find_if with convenience functions * RSX: use sv in swizzle comparison idk, I'll remove this if it was intentional. * overlays/osk: rename enter to return This one confused me and make me look for a bug that caused the "enter" key to be disabled, while it was actually the return key (obviously xD).
This commit is contained in:
parent
838cbe1840
commit
52deff06ba
9 changed files with 72 additions and 88 deletions
|
|
@ -1717,7 +1717,7 @@ static NEVER_INLINE error_code savedata_op(ppu_thread& ppu, u32 operation, u32 v
|
|||
{
|
||||
if (std::find(blist.begin(), blist.end(), to_add) == blist.end())
|
||||
{
|
||||
if(auto it = std::find(blist.begin(), blist.end(), ""); it != blist.end())
|
||||
if (auto it = std::find(blist.begin(), blist.end(), ""); it != blist.end())
|
||||
*it = to_add;
|
||||
else
|
||||
blist.push_back(to_add);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue