"static readonly" constants should be "const" instead (#5560)
* "static readonly" constants should be "const" instead * change fields to PascalCase
This commit is contained in:
parent
ddefb4fff4
commit
8edfb2bc7b
6 changed files with 21 additions and 21 deletions
|
@ -20,7 +20,7 @@
|
|||
"sdk",
|
||||
};
|
||||
|
||||
public static readonly string MainNpdmPath = "/main.npdm";
|
||||
public const string MainNpdmPath = "/main.npdm";
|
||||
|
||||
public const int NroAsetMagic = ('A' << 0) | ('S' << 8) | ('E' << 16) | ('T' << 24);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue