From 26748edc3725bb6c95b29bd4154a977bd55bad02 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Mon, 16 Jan 2023 10:04:29 +0100 Subject: [PATCH] early-access version 3310 --- README.md | 2 +- src/video_core/host_shaders/full_screen_triangle.vert | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index abe4d0a56..52a6b0e29 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3309. +This is the source code for early-access 3310. ## Legal Notice diff --git a/src/video_core/host_shaders/full_screen_triangle.vert b/src/video_core/host_shaders/full_screen_triangle.vert index e987df913..9c0eb3d9c 100755 --- a/src/video_core/host_shaders/full_screen_triangle.vert +++ b/src/video_core/host_shaders/full_screen_triangle.vert @@ -32,4 +32,4 @@ void main() { float y = float((VERTEX_ID & 2) << 1); gl_Position = vec4(x - 1.0, FLIPY * (y - 1.0), 0.0, 1.0); texcoord = fma(vec2(x, y) / 2.0, tex_scale, tex_offset); -} \ No newline at end of file +}