]> git.decadent.org.uk Git - videolink.git/blob - dvd.hpp
Added debugging option to keep temporary files.
[videolink.git] / dvd.hpp
1 #ifndef INC_DVD_HPP
2 #define INC_DVD_HPP
3
4 namespace dvd
5 {
6     // Maximum number of buttons in a menu.
7     const int menu_buttons_max = 36;
8
9     // Number of colours allowed in each button.
10     // Buttons can change colour when they are selected.
11     const int button_n_colours = 4;
12
13     // DVD virtual machine register size.
14     const int reg_bits = 16;
15
16     // Number by which button numbers must be multiplied when stored in
17     // system register 8.
18     const int reg_s8_button_mult = 0x400;
19 }
20
21 #endif // !INC_DVD_HPP