Fixed NEON GPU plugin for PC by using stdint.h types - use
[pcsx_rearmed.git] / plugins / gpu_neon / psx_gpu_if.c
index 8900d4e..86103f3 100644 (file)
@@ -8,7 +8,7 @@
  * See the COPYING file in the top-level directory.
  */
 
-#include <stdio.h>
+#include <stdint.h>
 #include <sys/mman.h>
 
 extern const unsigned char cmd_lengths[256];
@@ -157,7 +157,7 @@ void renderer_notify_res_change(void)
   if (egpu.enhancement_x_threshold != gpu.screen.hres)
   {
     egpu.enhancement_x_threshold = gpu.screen.hres;
-    update_enhancement_buf_table(&egpu);
+    update_enhancement_buf_table_from_hres(&egpu);
   }
 }