bump gsdx version to 1.0.0

This commit is contained in:
Gregory Hainaut 2015-06-24 20:00:13 +02:00
parent 839003467e
commit ae3b768de9
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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);
}

View File

@ -21,7 +21,7 @@
#pragma once
#define PLUGIN_VERSION 16
#define PLUGIN_VERSION 0
#define VM_SIZE 4194304
#define PAGE_SIZE 8192