mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
Resolve compilation warnings (#15)
This commit is contained in:
parent
6b7474e34e
commit
51150f4b07
2 changed files with 6 additions and 1 deletions
|
|
@ -89,7 +89,8 @@ struct BridgePusher {
|
|||
header->vmAddress = address;
|
||||
header->vmSize = size;
|
||||
std::strncpy(header->vmName, name, sizeof(header->vmName));
|
||||
header->flags |= static_cast<std::uint64_t>(BridgeFlags::VmConfigured);
|
||||
header->flags =
|
||||
header->flags | static_cast<std::uint64_t>(BridgeFlags::VmConfigured);
|
||||
}
|
||||
|
||||
void sendMemoryProtect(std::uint64_t address, std::uint64_t size,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue