Merge pull request #5670 from FearlessTobi/port-5277

Port yuzu-emu/yuzu#5277: "general: Fix various spelling errors"
This commit is contained in:
Pengfei Zhu 2021-01-09 22:10:27 +08:00 committed by GitHub
commit 7c6d7905a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 10 deletions

View file

@ -208,7 +208,7 @@ public:
// The queue is a min-heap using std::make_heap/push_heap/pop_heap.
// We don't use std::priority_queue because we need to be able to serialize, unserialize and
// erase arbitrary events (RemoveEvent()) regardless of the queue order. These aren't
// accomodated by the standard adaptor class.
// accommodated by the standard adaptor class.
std::vector<Event> event_queue;
u64 event_fifo_id = 0;
// the queue for storing the events from other threads threadsafe until they will be added