Buildfixes for MSVC

This commit is contained in:
twinaphex
2022-01-09 10:36:57 +01:00
parent 56d75e784a
commit eb06d17e79
12 changed files with 1 additions and 1 deletions

0
intl/activate.py Normal file → Executable file
View File

0
intl/core_option_translation.py Normal file → Executable file
View File

0
intl/crowdin_prep.py Normal file → Executable file
View File

0
intl/crowdin_source_upload.py Normal file → Executable file
View File

0
intl/crowdin_translate.py Normal file → Executable file
View File

0
intl/crowdin_translation_download.py Normal file → Executable file
View File

0
intl/download_workflow.py Normal file → Executable file
View File

0
intl/initial_sync.py Normal file → Executable file
View File

0
intl/remove_initial_cycle.py Normal file → Executable file
View File

0
intl/upload_workflow.py Normal file → Executable file
View File

0
intl/v1_to_v2_converter.py Normal file → Executable file
View File

View File

@@ -62,13 +62,13 @@ static void Mapper452_Reset(void) {
}
static void Mapper452_Power(void) {
uint8* WRAM = (uint8*) FCEU_gmalloc(8192);
latch[0] =latch[1] =0;
Mapper452_Sync();
SetReadHandler(0x8000, 0xFFFF, CartBR);
SetWriteHandler(0x8000, 0xDFFF, Mapper452_WriteLatch);
SetWriteHandler(0xE000, 0xFFFF, CartBW);
uint8* WRAM = (uint8*) FCEU_gmalloc(8192);
SetupCartPRGMapping(0x10, (uint8*) FCEU_gmalloc(8192), 8192, 1);
}