Skip to content

Commit

Permalink
Fixing compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
zoggins committed Jul 2, 2024
1 parent 958d003 commit e72de09
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 12 deletions.
3 changes: 0 additions & 3 deletions RetroSpyX/ConfigParseException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,5 @@ public ConfigParseException(string message, Exception innerException)

public ConfigParseException(string format, Exception innerException, params object[] args)
: base(string.Format(CultureInfo.CurrentCulture, format, args), innerException) { }

protected ConfigParseException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext)
: base(serializationInfo, streamingContext) { }
}
}
4 changes: 0 additions & 4 deletions RetroSpyX/SSHMonitorDisconnectException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,5 @@ public SSHMonitorDisconnectException(string message, Exception innerException) :
public SSHMonitorDisconnectException()
{
}

protected SSHMonitorDisconnectException(System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext) : base(serializationInfo, streamingContext)
{
}
}
}
2 changes: 1 addition & 1 deletion RetroSpyX/SetupWindow.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,7 @@ private void MiSTerPopulate_Click(object sender, RoutedEventArgs e)
{
while (!_data.DataAvailable) { }

string line = _data.ReadLine();
string line = _data.ReadLine()!;
if (line.Contains("retrospy_end"))
{
break;
Expand Down
4 changes: 0 additions & 4 deletions firmware/sketches/Dreamcast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -527,10 +527,6 @@ void DreamcastSpy::setup() {
void DreamcastSpy::loop() {
}

void DreamcastSpy::loop1() {
}


void DreamcastSpy::writeSerial() {
}

Expand Down

0 comments on commit e72de09

Please sign in to comment.