mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-20 12:32:07 +02:00
Update to v106r65 release.
byuu says: This synchronizes bsnes/higan with many recent internal nall changes. This will be the last WIP until I am situated in Japan. Apologies for the bugfixes that didn't get applied yet, I ran out of time.
This commit is contained in:
@@ -4,7 +4,7 @@ namespace nall { namespace Encode {
|
||||
|
||||
struct BMP {
|
||||
static auto create(const string& filename, const void* data, uint pitch, uint width, uint height, bool alpha) -> bool {
|
||||
file fp{filename, file::mode::write};
|
||||
auto fp = file::open(filename, file::mode::write);
|
||||
if(!fp) return false;
|
||||
|
||||
uint bitsPerPixel = alpha ? 32 : 24;
|
||||
|
Reference in New Issue
Block a user