mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Small Changes.
This commit is contained in:
parent
808dabf600
commit
27c9523bd7
3 changed files with 6 additions and 3 deletions
2
OtterGui
2
OtterGui
|
|
@ -1 +1 @@
|
|||
Subproject commit 0d512d15089298b93fa3f70e8eb8819955143600
|
||||
Subproject commit e3d26f16234a4295bf3c7802d87ce43293c6ffe0
|
||||
|
|
@ -27,9 +27,12 @@ public unsafe struct CustomizeData : IEquatable<CustomizeData>, IReadOnlyCollect
|
|||
=> GetEnumerator();
|
||||
|
||||
|
||||
private unsafe byte At(int index)
|
||||
public byte At(int index)
|
||||
=> Data[index];
|
||||
|
||||
public void Set(int index, byte value)
|
||||
=> Data[index] = value;
|
||||
|
||||
public void Read(void* source)
|
||||
{
|
||||
fixed (byte* ptr = Data)
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ public class CommandHandler : IDisposable
|
|||
|
||||
private bool PrintHelp(string arguments)
|
||||
{
|
||||
if (!string.Equals(arguments, "help", StringComparison.OrdinalIgnoreCase) && arguments == "?")
|
||||
if (!string.Equals(arguments, "help", StringComparison.OrdinalIgnoreCase) && arguments != "?")
|
||||
_chat.Print(new SeStringBuilder().AddText("The given argument ").AddRed(arguments, true)
|
||||
.AddText(" is not valid. Valid arguments are:").BuiltString);
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue