mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	fix some xcode 7.0 warnings
This commit is contained in:
		
							parent
							
								
									09f43c0975
								
							
						
					
					
						commit
						bafb7afba2
					
				@ -345,7 +345,7 @@ ResultCode FormatConfig() {
 | 
			
		||||
 | 
			
		||||
    char16_t country_name_buffer[16][0x40] = {};
 | 
			
		||||
    for (size_t i = 0; i < 16; ++i) {
 | 
			
		||||
        auto size = Common::UTF8ToUTF16("Gensokyo").copy(country_name_buffer[i], 0x40);
 | 
			
		||||
        Common::UTF8ToUTF16("Gensokyo").copy(country_name_buffer[i], 0x40);
 | 
			
		||||
    }
 | 
			
		||||
    // 0x000B0001 - Localized names for the profile Country
 | 
			
		||||
    res = CreateConfigInfoBlk(0x000B0001, sizeof(country_name_buffer), 0xE, country_name_buffer);
 | 
			
		||||
 | 
			
		||||
@ -143,11 +143,11 @@ void Recorder::Finish(const std::string& filename) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Recorder::FrameFinished() {
 | 
			
		||||
    stream.push_back( { FrameMarker } );
 | 
			
		||||
    stream.push_back( { { FrameMarker } } );
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void Recorder::MemoryAccessed(const u8* data, u32 size, u32 physical_address) {
 | 
			
		||||
    StreamElement element = { MemoryLoad };
 | 
			
		||||
    StreamElement element = { { MemoryLoad } };
 | 
			
		||||
    element.data.memory_load.size = size;
 | 
			
		||||
    element.data.memory_load.physical_address = physical_address;
 | 
			
		||||
 | 
			
		||||
@ -168,7 +168,7 @@ void Recorder::MemoryAccessed(const u8* data, u32 size, u32 physical_address) {
 | 
			
		||||
 | 
			
		||||
template<typename T>
 | 
			
		||||
void Recorder::RegisterWritten(u32 physical_address, T value) {
 | 
			
		||||
    StreamElement element = { RegisterWrite };
 | 
			
		||||
    StreamElement element = { { RegisterWrite } };
 | 
			
		||||
    element.data.register_write.size = (sizeof(T) == 1) ? CTRegisterWrite::SIZE_8
 | 
			
		||||
                                     : (sizeof(T) == 2) ? CTRegisterWrite::SIZE_16
 | 
			
		||||
                                     : (sizeof(T) == 4) ? CTRegisterWrite::SIZE_32
 | 
			
		||||
 | 
			
		||||
@ -45,7 +45,6 @@ public:
 | 
			
		||||
 | 
			
		||||
    private:
 | 
			
		||||
        GraphicsDebugger* observed;
 | 
			
		||||
        bool in_destruction;
 | 
			
		||||
 | 
			
		||||
        friend class GraphicsDebugger;
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
@ -967,6 +967,8 @@ static void ProcessTriangleInternal(const Shader::OutputVertex& v0,
 | 
			
		||||
                        UNIMPLEMENTED();
 | 
			
		||||
                        break;
 | 
			
		||||
                    }
 | 
			
		||||
 | 
			
		||||
                    return {};
 | 
			
		||||
                };
 | 
			
		||||
 | 
			
		||||
                auto LookupFactorA = [&](Regs::BlendFactor factor) -> u8 {
 | 
			
		||||
@ -1000,6 +1002,8 @@ static void ProcessTriangleInternal(const Shader::OutputVertex& v0,
 | 
			
		||||
                        UNIMPLEMENTED();
 | 
			
		||||
                        break;
 | 
			
		||||
                    }
 | 
			
		||||
 | 
			
		||||
                    return {};
 | 
			
		||||
                };
 | 
			
		||||
 | 
			
		||||
                static auto EvaluateBlendEquation = [](const Math::Vec4<u8>& src, const Math::Vec4<u8>& srcfactor,
 | 
			
		||||
 | 
			
		||||
@ -62,7 +62,6 @@ private:
 | 
			
		||||
                                    const TextureInfo& texture);
 | 
			
		||||
 | 
			
		||||
    EmuWindow*  render_window;                    ///< Handle to render window
 | 
			
		||||
    u32         last_mode;                        ///< Last render mode
 | 
			
		||||
 | 
			
		||||
    int resolution_width;                         ///< Current resolution width
 | 
			
		||||
    int resolution_height;                        ///< Current resolution height
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user