mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
- Multiple header files where missing #includes to other headers that where used in the header. Correct header was included in correct order in source files which caused everything to compile. - Added missing #includes so header files correctly include all their dependencies and fixes problems with IDEs being unable to parse headers correctly due to missing symbols
14 lines
223 B
C
14 lines
223 B
C
#pragma once
|
|
|
|
#include "cellFont.h"
|
|
|
|
#include "Emu/Memory/vm_ptr.h"
|
|
|
|
struct CellFontLibraryConfigFT
|
|
{
|
|
vm::bptr<void> library;
|
|
CellFontMemoryInterface MemoryIF;
|
|
};
|
|
|
|
using CellFontRendererConfigFT = CellFontRendererConfig;
|