A couple of android compile fixes that showed up

This commit is contained in:
baldurk
2017-11-27 20:34:28 +00:00
parent 413a06b299
commit 47bee80522
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -818,7 +818,7 @@ ShaderReflection *ReplayProxy::Proxied_GetShader(ParamSerialiser &paramser, Retu
ResourceId id, std::string entryPoint)
{
const ReplayProxyPacket packet = eReplayProxy_GetShader;
ShaderReflection *ret;
ShaderReflection *ret = NULL;
ShaderReflKey key(id, entryPoint);
+1 -1
View File
@@ -625,7 +625,7 @@ public:
for(size_t i = N; i < count; i++)
{
T dummy;
T dummy = T();
SerialiseDispatch<Serialiser, T>::Do(*this, dummy);
}
}