mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 06:21:26 +12:00
Fix some warnings
This commit is contained in:
parent
0fd6956bb0
commit
385d21e6dc
2 changed files with 2 additions and 2 deletions
|
@ -3643,7 +3643,7 @@ namespace rsx
|
||||||
m_invalidated_memory_range.invalidate();
|
m_invalidated_memory_range.invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
void thread::renderctl(u32 request_code, void* args)
|
void thread::renderctl(u32 request_code, void* /*args*/)
|
||||||
{
|
{
|
||||||
switch (request_code)
|
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()>>();
|
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())
|
if (should_wait_cb && should_wait_cb())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue