mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-29 14:53:18 +00:00
refactoring log class
This commit is contained in:
parent
ca291b6573
commit
04e9366cb8
12 changed files with 105 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
|||
#include "video_out.h"
|
||||
|
||||
#include <Core/PS4/HLE/Libs.h>
|
||||
#include <Util/Log.h>
|
||||
#include <Util/log.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <magic_enum.hpp>
|
||||
|
|
0
src/Core/PS4/HLE/Kernel/event_queues.cpp
Normal file
0
src/Core/PS4/HLE/Kernel/event_queues.cpp
Normal file
5
src/Core/PS4/HLE/Kernel/event_queues.h
Normal file
5
src/Core/PS4/HLE/Kernel/event_queues.h
Normal file
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include <types.h>
|
||||
|
||||
namespace HLE::Libs::LibKernel::EventQueues {};
|
|
@ -7,7 +7,7 @@
|
|||
#include <bit>
|
||||
#include <magic_enum.hpp>
|
||||
|
||||
#include "../../../../Util/Log.h"
|
||||
#include <Util/log.h>
|
||||
#include "../../../../Util/Singleton.h"
|
||||
#include "../ErrorCodes.h"
|
||||
#include "../Libs.h"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#include "LibKernel.h"
|
||||
#include "Libs.h"
|
||||
#include <debug.h>
|
||||
#include "../../../Util/Log.h"
|
||||
#include <Util/log.h>
|
||||
#include "Kernel/memory_management.h"
|
||||
#include "../../../Util/Singleton.h"
|
||||
#include "Kernel/Objects/physical_memory.h"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "Linker.h"
|
||||
#include "../virtual_memory.h"
|
||||
#include "../../Util/Log.h"
|
||||
#include <Util/log.h>
|
||||
#include "../../Util/Disassembler.h"
|
||||
#include <Util/string_util.h>
|
||||
#include "Util/aerolib.h"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include <spdlog/pattern_formatter.h>
|
||||
#include <magic_enum.hpp>
|
||||
#include <fmt/core.h>
|
||||
#include "../../../Util/Log.h"
|
||||
#include <Util/log.h>
|
||||
|
||||
#ifdef _WIN64
|
||||
#define DBG_BREAKPOINT __debugbreak();
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "../../../types.h"
|
||||
#include "SymbolsResolver.h"
|
||||
#include "../../../Util/Log.h"
|
||||
#include <Util/log.h>
|
||||
|
||||
|
||||
void SymbolsResolver::AddSymbol(const SymbolRes& s, u64 virtual_addr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue