16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 19:49:19 +02:00

verbose lpt logging

This commit is contained in:
milek7
2018-01-26 20:48:25 +01:00
parent 44515a5abb
commit c631f4beed
2 changed files with 19 additions and 7 deletions

9
Logs.h
View File

@@ -12,10 +12,11 @@ http://mozilla.org/MPL/2.0/.
enum logtype : unsigned int {
generic = 0x1,
file = 0x2,
model = 0x4,
texture = 0x8
generic = (1 << 0),
file = (1 << 1),
model = (1 << 2),
texture = (1 << 3),
lptdebug = (1 << 4)
};
void WriteLog( const char *str, logtype const Type = logtype::generic );