mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-02 23:00:20 +01:00
Fix some warnings
This commit is contained in:
parent
0fd6956bb0
commit
385d21e6dc
|
|
@ -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…
Reference in a new issue