Skip to content
This repository was archived by the owner on Dec 6, 2025. It is now read-only.

Commit 8bf845b

Browse files
committed
PINE: Change server identification from PCSX2 to XBSX2
Updated the string in `PINEServer::ParseCommand` to reflect the new server branding. The formatted output now uses "XBSX2" instead of "PCSX2".
1 parent b3d33b8 commit 8bf845b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pcsx2/PINE.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ PINEServer::IPCBuffer PINEServer::ParseCommand(std::span<u8> buf, std::vector<u8
612612
goto error;
613613
ToResultVector(ret_buffer, size, ret_cnt);
614614
ret_cnt += 4;
615-
snprintf(reinterpret_cast<char*>(&ret_buffer[ret_cnt]), size, "PCSX2 %s", BuildVersion::GitRev);
615+
snprintf(reinterpret_cast<char*>(&ret_buffer[ret_cnt]), size, "XBSX2 %s", BuildVersion::GitRev);
616616
ret_cnt += size;
617617
break;
618618
}

0 commit comments

Comments
 (0)