1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Dump microcode info to log file.

This commit is contained in:
Sergey Lipskiy 2018-08-31 13:40:01 +07:00
parent 73189eb958
commit a28b9913f7

View File

@ -362,6 +362,7 @@ void GBIInfo::loadMicrocode(u32 uc_start, u32 uc_dstart, u16 uc_dsize)
current.NoN = info.NoN; current.NoN = info.NoN;
current.negativeY = info.negativeY; current.negativeY = info.negativeY;
current.fast3DPersp = info.fast3DPerspNorm; current.fast3DPersp = info.fast3DPerspNorm;
LOG(LOG_VERBOSE, "Load microcode type: %d crc: 0x%08x romname: %s\n", current.type, uc_crc, RSP.romname);
_makeCurrent(&current); _makeCurrent(&current);
return; return;
} }
@ -442,6 +443,7 @@ void GBIInfo::loadMicrocode(u32 uc_start, u32 uc_dstart, u16 uc_dsize)
if (type != NONE) { if (type != NONE) {
current.type = type; current.type = type;
LOG(LOG_VERBOSE, "Load microcode type: %d crc: 0x%08x romname: %s\n", current.type, uc_crc, RSP.romname);
_makeCurrent(&current); _makeCurrent(&current);
return; return;
} }