Преглед изворни кода

You know what, just remove const

jp9000 пре 6 година
родитељ
комит
30c4fe4b83
1 измењених фајлова са 3 додато и 2 уклоњено
  1. 3 2
      libobs-metal/metal-subsystem.mm

+ 3 - 2
libobs-metal/metal-subsystem.mm

@@ -1449,13 +1449,14 @@ static inline void gs_indexbuffer_flush_internal(gs_indexbuffer_t *indexbuffer,
 
 void gs_indexbuffer_flush(gs_indexbuffer_t *indexbuffer)
 {
-	gs_indexbuffer_flush_internal(indexbuffer, indexbuffer->indices.get());
+	gs_indexbuffer_flush_internal(indexbuffer,
+			(void *)indexbuffer->indices.get());
 }
 
 void gs_indexbuffer_flush_direct(gs_indexbuffer_t *indexbuffer,
 		const void *data)
 {
-	gs_indexbuffer_flush_internal(indexbuffer, data);
+	gs_indexbuffer_flush_internal(indexbuffer, (void *)data);
 }
 
 void *gs_indexbuffer_get_data(const gs_indexbuffer_t *indexbuffer)