mirror of https://github.com/PCSX2/pcsx2.git
Fix the definition of VERSION in ZeroSpu2 and OnePad.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2211 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
6632e5d108
commit
0cac04b028
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<CodeBlocks_workspace_file>
|
||||
<Workspace title="pcsx2_suite_2008 workspace">
|
||||
<Project filename="pcsx2/Linux/pcsx2.cbp" active="1">
|
||||
<Project filename="pcsx2/Linux/pcsx2.cbp">
|
||||
<Depends filename="common/build/x86emitter/x86emitter.cbp" />
|
||||
<Depends filename="common/build/Utilities/Utilities.cbp" />
|
||||
<Depends filename="3rdparty/zlib/zlib.cbp" />
|
||||
|
@ -25,7 +25,7 @@
|
|||
<Project filename="plugins/spu2-x/src/Linux/SPU2-X.cbp">
|
||||
<Depends filename="3rdparty/SoundTouch/SoundTouch.cbp" />
|
||||
</Project>
|
||||
<Project filename="plugins/zerospu2/Linux/ZeroSPU2.cbp">
|
||||
<Project filename="plugins/zerospu2/Linux/ZeroSPU2.cbp" active="1">
|
||||
<Depends filename="3rdparty/SoundTouch/SoundTouch.cbp" />
|
||||
</Project>
|
||||
</Workspace>
|
||||
|
|
|
@ -107,7 +107,7 @@ on_checkbutton_reversely_toggled (GtkToggleButton *togglebutton,
|
|||
|
||||
|
||||
void
|
||||
on_Remove (GtkButton *button,
|
||||
on_Clear (GtkButton *button,
|
||||
gpointer user_data)
|
||||
{
|
||||
|
||||
|
@ -115,7 +115,7 @@ on_Remove (GtkButton *button,
|
|||
|
||||
|
||||
void
|
||||
on_Clear (GtkButton *button,
|
||||
on_Remove (GtkButton *button,
|
||||
gpointer user_data)
|
||||
{
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
#define VERSION "0.1"
|
||||
|
||||
void
|
||||
OnAbout_Ok (GtkDialog *dialog,
|
||||
|
@ -51,11 +52,11 @@ on_checkbutton_reversely_toggled (GtkToggleButton *togglebutton,
|
|||
gpointer user_data);
|
||||
|
||||
void
|
||||
on_Remove (GtkButton *button,
|
||||
on_Clear (GtkButton *button,
|
||||
gpointer user_data);
|
||||
|
||||
void
|
||||
on_Clear (GtkButton *button,
|
||||
on_Remove (GtkButton *button,
|
||||
gpointer user_data);
|
||||
|
||||
void
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
#include "interface.h"
|
||||
#include "support.h"
|
||||
|
||||
#define VERSION 1
|
||||
|
||||
#define GLADE_HOOKUP_OBJECT(component,widget,name) \
|
||||
g_object_set_data_full (G_OBJECT (component), name, \
|
||||
gtk_widget_ref (widget), (GDestroyNotify) gtk_widget_unref)
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
<Add option="-fPIC" />
|
||||
<Add option="-m32" />
|
||||
<Add option="-msse2" />
|
||||
<Add option="-DVERSION=1" />
|
||||
<Add directory="../Linux" />
|
||||
<Add directory="../../zerospu2" />
|
||||
<Add directory="../../../common/include" />
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include <gtk/gtk.h>
|
||||
|
||||
|
||||
#define VERSION "0.4.6"
|
||||
void
|
||||
on_Conf_Ok (GtkButton *button,
|
||||
gpointer user_data);
|
||||
|
|
Loading…
Reference in New Issue