From 09c901655db3bb42d2aac4b506846b18833d777c Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Tue, 7 Mar 2023 15:23:51 -0400 Subject: global: Completly disable inlining This is because it looks more, and more clear that the entire codebase was compiled without inlining. Likely to reduce code size from all the byteswap functions, only present on the GameCube version. --- src/pso/protocol.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/pso/protocol.cpp') diff --git a/src/pso/protocol.cpp b/src/pso/protocol.cpp index 280b105..09ef213 100644 --- a/src/pso/protocol.cpp +++ b/src/pso/protocol.cpp @@ -3,7 +3,3 @@ void bswap_32(u32 *val) {} void bswap_16(u16 *val) {} - -void packet_header::bswap() { - bswap_16(&size); -} -- cgit v1.2.3-13-gbd6f