mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 14:42:33 +01:00
byuu says: I'll post more detailed changes later, but basically: - fixed Baldur's Gate bug - guess if no flash ROM ID present (fixes Magical Vacation, many many others) - nall cleanups - sfc/cartridge major cleanups - bsxcartridge/"bsx" renamed to mcc/"mcc" after the logic chip it uses (consistency with SGB/ICD2) - ... and more!
22 lines
523 B
C++
22 lines
523 B
C++
#ifndef NALL_IMAGE_HPP
|
|
#define NALL_IMAGE_HPP
|
|
|
|
#include <algorithm>
|
|
|
|
#include <nall/filemap.hpp>
|
|
#include <nall/interpolation.hpp>
|
|
#include <nall/stdint.hpp>
|
|
#include <nall/decode/bmp.hpp>
|
|
#include <nall/decode/png.hpp>
|
|
#include <nall/image/base.hpp>
|
|
#include <nall/image/static.hpp>
|
|
#include <nall/image/core.hpp>
|
|
#include <nall/image/load.hpp>
|
|
#include <nall/image/interpolation.hpp>
|
|
#include <nall/image/fill.hpp>
|
|
#include <nall/image/scale.hpp>
|
|
#include <nall/image/blend.hpp>
|
|
#include <nall/image/utility.hpp>
|
|
|
|
#endif
|