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

lua write error

This commit is contained in:
milek7
2018-03-21 20:06:26 +01:00
parent 479498cedc
commit 9b602686a2
4 changed files with 13 additions and 5 deletions

5
Logs.h
View File

@@ -11,12 +11,13 @@ http://mozilla.org/MPL/2.0/.
#include "uilayer.h"
enum logtype : unsigned int {
enum class logtype : unsigned int {
generic = ( 1 << 0 ),
file = ( 1 << 1 ),
model = ( 1 << 2 ),
texture = ( 1 << 3 )
texture = ( 1 << 3 ),
lua = ( 1 << 4 )
};
void WriteLog( const char *str, logtype const Type = logtype::generic );