mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Remove the current players blurb
This commit is contained in:
		
							parent
							
								
									2d1efcc36b
								
							
						
					
					
						commit
						599eebf511
					
				
					 1 changed files with 8 additions and 4 deletions
				
			
		|  | @ -207,15 +207,19 @@ public: | |||
|             return LobbyItem::data(role); | ||||
|         } | ||||
|         auto members = data(MemberListRole).toList(); | ||||
|         QString out = QObject::tr("Current Players in the room"); | ||||
|         QString out; | ||||
|         bool first = true; | ||||
|         for (const auto& member : members) { | ||||
|             if (!first) | ||||
|                 out += '\n'; | ||||
|             const auto& m = member.value<LobbyMember>(); | ||||
|             if (m.GetGameName().isEmpty()) { | ||||
|                 out += QString(QObject::tr("\n%1 is not playing a game")).arg(m.GetUsername()); | ||||
|                 out += QString(QObject::tr("%1 is not playing a game")).arg(m.GetUsername()); | ||||
|             } else { | ||||
|                 out += QString(QObject::tr("\n%1 is playing %2")) | ||||
|                            .arg(m.GetUsername(), m.GetGameName()); | ||||
|                 out += | ||||
|                     QString(QObject::tr("%1 is playing %2")).arg(m.GetUsername(), m.GetGameName()); | ||||
|             } | ||||
|             first = false; | ||||
|         } | ||||
|         return out; | ||||
|     } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue