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

build 200604. sound loading logging enhancement, driving aid throttle data enhancement, external camera movement control fix

This commit is contained in:
tmj-fstate
2020-06-05 16:45:52 +02:00
parent ad1a14082c
commit 03561b11d8
9 changed files with 28 additions and 17 deletions

5
Logs.h
View File

@@ -11,7 +11,7 @@ http://mozilla.org/MPL/2.0/.
#include <string>
enum logtype : unsigned int {
enum class logtype : unsigned int {
generic = ( 1 << 0 ),
file = ( 1 << 1 ),
@@ -20,7 +20,8 @@ enum logtype : unsigned int {
// lua = ( 1 << 4 ),
material = ( 1 << 5 ),
shader = ( 1 << 6 ),
net = ( 1 << 7 )
net = ( 1 << 7 ),
sound = ( 1 << 8 ),
};
void WriteLog( const char *str, logtype const Type = logtype::generic );