housekeeping

This commit is contained in:
scawful
2023-11-11 20:17:34 -05:00
parent 61d235c342
commit c1ad23284e
7 changed files with 14 additions and 11 deletions

View File

@@ -6,12 +6,14 @@
#include <cstdint>
#include <memory>
#include "absl/container/flat_hash_map.h"
#include "absl/status/status.h"
#include "absl/status/statusor.h"
#include "absl/strings/str_cat.h"
#include "app/core/constants.h"
#include "app/gfx/snes_palette.h"
namespace yaze {
namespace app {
namespace gfx {
@@ -113,7 +115,7 @@ class Bitmap {
std::shared_ptr<SDL_Surface> surface_ = nullptr;
};
using BitmapTable = std::unordered_map<int, gfx::Bitmap>;
using BitmapTable = absl::flat_hash_map<int, gfx::Bitmap>;
} // namespace gfx
} // namespace app