renamed Core namespace to core

This commit is contained in:
Justin Scofield
2022-06-20 13:16:24 -04:00
parent b08dd34a08
commit 6c3e31e2b2
14 changed files with 1524 additions and 34 deletions

View File

@@ -6,7 +6,7 @@ namespace yaze {
namespace application {
namespace Data {
using namespace Core;
using namespace core;
using namespace Graphics;
Overworld::~Overworld() {
@@ -104,7 +104,7 @@ void Overworld::AssembleMap32Tiles() {
}
void Overworld::AssembleMap16Tiles() {
int tpos = Core::Constants::map16Tiles;
int tpos = core::Constants::map16Tiles;
for (int i = 0; i < 4096; i += 1) // 3760
{
TileInfo t0 = GetTilesInfo((uintptr_t)rom_.GetRawData() + tpos);