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:
9
Logs.h
9
Logs.h
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user