mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Fix some warnings
This commit is contained in:
parent
0fd6956bb0
commit
ed4d8bf2a8
2 changed files with 2 additions and 2 deletions
|
@ -3643,7 +3643,7 @@ namespace rsx
|
|||
m_invalidated_memory_range.invalidate();
|
||||
}
|
||||
|
||||
void thread::renderctl(u32 request_code, void* args)
|
||||
void thread::renderctl(u32 request_code, void* /*args*/)
|
||||
{
|
||||
switch (request_code)
|
||||
{
|
||||
|
|
|
@ -2347,7 +2347,7 @@ void game_list_frame::BatchActionBySerials(progress_dialog* pdlg, const std::set
|
|||
|
||||
const std::shared_ptr<std::function<void()>> periodic_func = std::make_shared<std::function<void()>>();
|
||||
|
||||
*periodic_func = [=]()
|
||||
*periodic_func = [=, this]()
|
||||
{
|
||||
if (should_wait_cb && should_wait_cb())
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue