mirror of
https://github.com/copy/v86.git
synced 2025-12-31 04:23:15 +00:00
Tidyup: use double quotes
This commit is contained in:
parent
868834974b
commit
0cc9b3651f
1 changed files with 2 additions and 2 deletions
|
|
@ -557,7 +557,7 @@ VGAScreen.prototype.vga_memory_read = function(addr)
|
|||
// VGA chip only decodes addresses within the selected memory space.
|
||||
if(addr < 0 || addr >= VGA_HOST_MEMORY_SPACE_SIZE[memory_space_select])
|
||||
{
|
||||
dbg_log('vga read outside memory space: addr:' + h(addr), LOG_VGA);
|
||||
dbg_log("vga read outside memory space: addr:" + h(addr), LOG_VGA);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -631,7 +631,7 @@ VGAScreen.prototype.vga_memory_write = function(addr, value)
|
|||
|
||||
if(addr < 0 || addr >= VGA_HOST_MEMORY_SPACE_SIZE[memory_space_select])
|
||||
{
|
||||
dbg_log('vga write outside memory space: addr:' + h(addr) + ', value:' + h(value), LOG_VGA);
|
||||
dbg_log("vga write outside memory space: addr:" + h(addr) + ", value:" + h(value), LOG_VGA);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue