housekeeping
This commit is contained in:
@@ -28,7 +28,7 @@ int GetPCGfxAddress(char *romData, char id) {
|
||||
char gfxGamePointer3 = romData[gfxPointer3 + id];
|
||||
|
||||
return lorom_snes_to_pc(
|
||||
Data::AddressFromBytes(gfxGamePointer1, gfxGamePointer2, gfxGamePointer3),
|
||||
AddressFromBytes(gfxGamePointer1, gfxGamePointer2, gfxGamePointer3),
|
||||
info1);
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
#include "tile.h"
|
||||
|
||||
#include <tile.h>
|
||||
|
||||
#include <cassert>
|
||||
#include <cstdint>
|
||||
#include <cstdio>
|
||||
@@ -7,6 +9,12 @@
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
#include <regex>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
|
||||
#include "app/core/constants.h"
|
||||
#include "app/gfx/palette.h"
|
||||
|
||||
namespace yaze {
|
||||
namespace app {
|
||||
|
||||
@@ -1,15 +1,21 @@
|
||||
#ifndef YAZE_APP_DATA_TILE_H
|
||||
#define YAZE_APP_DATA_TILE_H
|
||||
#ifndef YAZE_APP_GFX_TILE_H
|
||||
#define YAZE_APP_GFX_TILE_H
|
||||
|
||||
#include <tile.h>
|
||||
|
||||
#include <cassert>
|
||||
#include <cstdint>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
#include <regex>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
|
||||
#include "Core/constants.h"
|
||||
#include "gfx/palette.h"
|
||||
#include "app/core/constants.h"
|
||||
#include "app/gfx/palette.h"
|
||||
|
||||
namespace yaze {
|
||||
namespace app {
|
||||
@@ -100,4 +106,4 @@ class TilePreset {
|
||||
} // namespace app
|
||||
} // namespace yaze
|
||||
|
||||
#endif
|
||||
#endif // YAZE_APP_GFX_TILE_H
|
||||
Reference in New Issue
Block a user