summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/async_context.h
diff options
context:
space:
mode:
authorChloe Marcec <dmarcecguzman@gmail.com>2021-09-08 16:09:04 +0200
committerChloe Marcec <dmarcecguzman@gmail.com>2021-09-08 16:09:04 +0200
commit89958e27aa81fb376005f262d725692698321607 (patch)
tree424c13dfb808af8fe992c3f04ba5f28a2882d0a6 /src/core/hle/service/acc/async_context.h
parentaddress name shadowing with system (diff)
downloadyuzu-89958e27aa81fb376005f262d725692698321607.tar
yuzu-89958e27aa81fb376005f262d725692698321607.tar.gz
yuzu-89958e27aa81fb376005f262d725692698321607.tar.bz2
yuzu-89958e27aa81fb376005f262d725692698321607.tar.lz
yuzu-89958e27aa81fb376005f262d725692698321607.tar.xz
yuzu-89958e27aa81fb376005f262d725692698321607.tar.zst
yuzu-89958e27aa81fb376005f262d725692698321607.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/acc/async_context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/acc/async_context.h b/src/core/hle/service/acc/async_context.h
index 2453a79f5..6592326d0 100644
--- a/src/core/hle/service/acc/async_context.h
+++ b/src/core/hle/service/acc/async_context.h
@@ -23,9 +23,9 @@ public:
void GetResult(Kernel::HLERequestContext& ctx);
protected:
- virtual bool IsComplete() = 0;
+ virtual bool IsComplete() const = 0;
virtual void Cancel() = 0;
- virtual ResultCode GetResult() = 0;
+ virtual ResultCode GetResult() const = 0;
void MarkComplete();