14 lines
		
	
	
		
			388 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			388 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#define vcd_ch_width 8
 | 
						|
#define vcd_ch_height 8
 | 
						|
static const int vcd_width_in_ch = 40;
 | 
						|
static const int vcd_height_in_ch = 12;
 | 
						|
 | 
						|
static const int vcd_px_width = 4;
 | 
						|
static const int vcd_px_height = 8;
 | 
						|
static const int vcd_width_in_px
 | 
						|
    = vcd_width_in_ch * vcd_ch_width * vcd_px_width;
 | 
						|
static const int vcd_height_in_px
 | 
						|
    = vcd_height_in_ch * vcd_ch_height * vcd_px_height;
 |