mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Symbian buildfix, forgot that this is how we worked around it in "base/functional.h"
This commit is contained in:
parent
0f8a969284
commit
c02c2c3417
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ void HttpImageFileView::DownloadCompletedCallback(http::Download &download) {
|
|||
|
||||
void HttpImageFileView::Draw(UIContext &dc) {
|
||||
if (!texture_ && !textureFailed_ && !path_.empty() && !download_) {
|
||||
download_ = downloader_->StartDownloadWithCallback(path_, "", std::bind(&HttpImageFileView::DownloadCompletedCallback, this, std::placeholders::_1));
|
||||
download_ = downloader_->StartDownloadWithCallback(path_, "", std::bind(&HttpImageFileView::DownloadCompletedCallback, this, placeholder::_1));
|
||||
download_->SetHidden(true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue