Revert sections.hpp to .h

This commit is contained in:
dcvz 2024-06-03 21:53:02 +02:00
parent 9f0dd2fcd9
commit 8c5a204754
4 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
#define __RECOMP_OVERLAYS_H__
#include <cstdint>
#include "sections.hpp"
#include "sections.h"
namespace recomp {
struct overlay_section_table_data_t {

View file

@ -5,7 +5,7 @@
#include "recomp.h"
#include "overlays.hpp"
#include "sections.hpp"
#include "sections.h"
static recomp::overlay_section_table_data_t sections_info {};
static recomp::overlays_by_index_t overlays_info {};

View file

@ -2,7 +2,7 @@
#include <algorithm>
#include <vector>
#include "recomp.h"
#include "sections.hpp"
#include "sections.h"
#include "overlays.hpp"
static SectionTableEntry* code_sections = nullptr;