From 55e811450dd681e1793c1eff2eb0ead69403bfd8 Mon Sep 17 00:00:00 2001 From: "Dr. Chat" Date: Thu, 22 Oct 2015 20:22:34 -0500 Subject: [PATCH] Lint --- src/xenia/cpu/mmio_handler.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xenia/cpu/mmio_handler.cc b/src/xenia/cpu/mmio_handler.cc index a3f2e8452..6f5cfeb1c 100644 --- a/src/xenia/cpu/mmio_handler.cc +++ b/src/xenia/cpu/mmio_handler.cc @@ -164,7 +164,8 @@ bool MMIOHandler::CheckWriteWatch(X64Context* thread_context, } std::list pending_invalidates; global_critical_region_.mutex().lock(); - // Now that we hold the lock, recheck and see if the pages are still protected. + // Now that we hold the lock, recheck and see if the pages are still + // protected. memory::PageAccess cur_access; size_t page_length = memory::page_size(); memory::QueryProtect((void*)fault_address, page_length, cur_access);