mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-24 13:13:58 +00:00
Disable/remove some warnings
Enable more debugging svn-id: r5709
This commit is contained in:
parent
ba94e0ac40
commit
5888d9b16d
@ -140,7 +140,6 @@ void MidiPlayer::read_one_song(File *in, Song *s, uint music)
|
||||
break;
|
||||
|
||||
case 'GMF\x1':
|
||||
warning("Old style songs not properly supported yet");
|
||||
read_mthd(in, s, true, music);
|
||||
break;
|
||||
|
||||
|
@ -1970,7 +1970,7 @@ void SimonState::set_video_mode_internal(uint mode, uint vga_res_id)
|
||||
uint16 c;
|
||||
byte *vc_ptr_org;
|
||||
|
||||
warning("Set video mode internal: %d, %d", mode, vga_res_id);
|
||||
//warning("Set video mode internal: %d, %d", mode, vga_res_id);
|
||||
|
||||
_video_palette_mode = mode;
|
||||
_lock_word |= 0x20;
|
||||
@ -2027,7 +2027,8 @@ void SimonState::set_video_mode_internal(uint mode, uint vga_res_id)
|
||||
vc_ptr_org = _vc_ptr;
|
||||
|
||||
_vc_ptr = _cur_vga_file_1 + READ_BE_UINT16_UNALIGNED(&((VgaFile1Struct0x8 *) b)->script_offs);
|
||||
// dump_vga_script(_vc_ptr, num, vga_res_id);
|
||||
if (_vgascript_toggle)
|
||||
dump_vga_script(_vc_ptr, num, vga_res_id);
|
||||
run_vga_script();
|
||||
_vc_ptr = vc_ptr_org;
|
||||
|
||||
@ -3694,7 +3695,8 @@ void SimonState::start_vga_code(uint b, uint vga_res, uint vga_struct_id, uint c
|
||||
for (;;) {
|
||||
if (READ_BE_UINT16_UNALIGNED(&((VgaFile1Struct0x6 *) p)->id) == vga_struct_id) {
|
||||
|
||||
//dump_vga_script(pp + READ_BE_UINT16_UNALIGNED(&((VgaFile1Struct0x6*)p)->script_offs), vga_res, vga_struct_id);
|
||||
if (_vgascript_toggle)
|
||||
dump_vga_script(pp + READ_BE_UINT16_UNALIGNED(&((VgaFile1Struct0x6*)p)->script_offs), vga_res, vga_struct_id);
|
||||
|
||||
add_vga_timer(gss->VGA_DELAY_BASE, pp + READ_BE_UINT16_UNALIGNED(&((VgaFile1Struct0x6 *) p)->script_offs), vga_struct_id, vga_res);
|
||||
break;
|
||||
|
@ -1915,8 +1915,6 @@ void SimonState::vc_70()
|
||||
|
||||
_vc70_var1 = a;
|
||||
_vc70_var2 = b;
|
||||
|
||||
warning("vc_70(%d,%d): music stuff?", a, b);
|
||||
}
|
||||
|
||||
|
||||
@ -1934,8 +1932,6 @@ void SimonState::vc_72()
|
||||
_vc72_var2 = b;
|
||||
_vc72_var3 = a;
|
||||
}
|
||||
|
||||
warning("vc_72(%d,%d): music stuff?", a, b);
|
||||
}
|
||||
|
||||
void SimonState::vc_73()
|
||||
|
Loading…
x
Reference in New Issue
Block a user