mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 02:37:57 -05:00
Kernel: Don't re-assign object's handle when duplicating one
This commit is contained in:
@ -52,7 +52,7 @@ class HandleTable;
|
||||
|
||||
class Object : NonCopyable {
|
||||
friend class HandleTable;
|
||||
u32 handle;
|
||||
u32 handle = INVALID_HANDLE;
|
||||
public:
|
||||
virtual ~Object() {}
|
||||
Handle GetHandle() const { return handle; }
|
||||
|
Reference in New Issue
Block a user