Revert sections.hpp to .h (#34)

This commit is contained in:
David Chavez 2024-06-03 21:54:20 +02:00 committed by GitHub
parent 9f0dd2fcd9
commit ec7e81b45d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;