Add client

This commit is contained in:
Keith Winstein
2011-08-13 19:05:11 -04:00
parent 577bfc0dae
commit d6e7f69a4b
8 changed files with 209 additions and 19 deletions
+1 -3
View File
@@ -155,7 +155,5 @@ void Emulator::resize( size_t s_width, size_t s_height )
bool Emulator::operator==( Emulator const &x ) const
{
assert( dispatch == x.dispatch );
assert( user == x.user );
return fb == x.fb;
return ( dispatch == x.dispatch ) && ( user == x.user ) && ( fb == x.fb );
}