From ae3b768de95aae9c74d0a17c1e7c67a6741ff3f4 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Wed, 24 Jun 2015 20:00:13 +0200 Subject: [PATCH] bump gsdx version to 1.0.0 --- plugins/GSdx/CMakeLists.txt | 2 +- plugins/GSdx/GS.cpp | 4 ++-- plugins/GSdx/GS.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/GSdx/CMakeLists.txt b/plugins/GSdx/CMakeLists.txt index ae007947b8..cee53a1d25 100644 --- a/plugins/GSdx/CMakeLists.txt +++ b/plugins/GSdx/CMakeLists.txt @@ -7,7 +7,7 @@ endif() # plugin name -set(Output GSdx-0.1.16) +set(Output GSdx-1.0.0) set(CommonFlags -fno-operator-names # because Xbyak uses and()/xor()/or()/not() function diff --git a/plugins/GSdx/GS.cpp b/plugins/GSdx/GS.cpp index a49e31f593..11943153fd 100644 --- a/plugins/GSdx/GS.cpp +++ b/plugins/GSdx/GS.cpp @@ -86,8 +86,8 @@ EXPORT_C_(const char*) PS2EgetLibName() EXPORT_C_(uint32) PS2EgetLibVersion2(uint32 type) { - const uint32 revision = 0; - const uint32 build = 1; + const uint32 revision = 1; + const uint32 build = 0; return (build << 0) | (revision << 8) | (PS2E_GS_VERSION << 16) | (PLUGIN_VERSION << 24); } diff --git a/plugins/GSdx/GS.h b/plugins/GSdx/GS.h index 52611fff18..4f0f493b95 100644 --- a/plugins/GSdx/GS.h +++ b/plugins/GSdx/GS.h @@ -21,7 +21,7 @@ #pragma once -#define PLUGIN_VERSION 16 +#define PLUGIN_VERSION 0 #define VM_SIZE 4194304 #define PAGE_SIZE 8192