mirror of https://github.com/PCSX2/pcsx2.git
bump gsdx version to 1.0.0
This commit is contained in:
parent
839003467e
commit
ae3b768de9
|
@ -7,7 +7,7 @@ endif()
|
||||||
|
|
||||||
|
|
||||||
# plugin name
|
# plugin name
|
||||||
set(Output GSdx-0.1.16)
|
set(Output GSdx-1.0.0)
|
||||||
|
|
||||||
set(CommonFlags
|
set(CommonFlags
|
||||||
-fno-operator-names # because Xbyak uses and()/xor()/or()/not() function
|
-fno-operator-names # because Xbyak uses and()/xor()/or()/not() function
|
||||||
|
|
|
@ -86,8 +86,8 @@ EXPORT_C_(const char*) PS2EgetLibName()
|
||||||
|
|
||||||
EXPORT_C_(uint32) PS2EgetLibVersion2(uint32 type)
|
EXPORT_C_(uint32) PS2EgetLibVersion2(uint32 type)
|
||||||
{
|
{
|
||||||
const uint32 revision = 0;
|
const uint32 revision = 1;
|
||||||
const uint32 build = 1;
|
const uint32 build = 0;
|
||||||
|
|
||||||
return (build << 0) | (revision << 8) | (PS2E_GS_VERSION << 16) | (PLUGIN_VERSION << 24);
|
return (build << 0) | (revision << 8) | (PS2E_GS_VERSION << 16) | (PLUGIN_VERSION << 24);
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define PLUGIN_VERSION 16
|
#define PLUGIN_VERSION 0
|
||||||
|
|
||||||
#define VM_SIZE 4194304
|
#define VM_SIZE 4194304
|
||||||
#define PAGE_SIZE 8192
|
#define PAGE_SIZE 8192
|
||||||
|
|
Loading…
Reference in New Issue