mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 21:58:44 +00:00
13 lines
229 B
C#
13 lines
229 B
C#
|
namespace Ryujinx.Core.OsHle.Services.Lm
|
||
|
{
|
||
|
enum LmLogField
|
||
|
{
|
||
|
Skip = 1,
|
||
|
Message = 2,
|
||
|
Line = 3,
|
||
|
Filename = 4,
|
||
|
Function = 5,
|
||
|
Module = 6,
|
||
|
Thread = 7
|
||
|
}
|
||
|
}
|